Simplifies lines by removing nearly-collinear points. When transitioning lines, it may be desirable to disable this so that the number of points along the resulting SVG path is unaffected. The 'simplify' property is a boolean and must be specified as:
(self)
| 128 | |
| 129 | @property |
| 130 | def simplify(self): |
| 131 | """ |
| 132 | Simplifies lines by removing nearly-collinear points. When |
| 133 | transitioning lines, it may be desirable to disable this so |
| 134 | that the number of points along the resulting SVG path is |
| 135 | unaffected. |
| 136 | |
| 137 | The 'simplify' property is a boolean and must be specified as: |
| 138 | - A boolean value: True or False |
| 139 | |
| 140 | Returns |
| 141 | ------- |
| 142 | bool |
| 143 | """ |
| 144 | return self["simplify"] |
| 145 | |
| 146 | @simplify.setter |
| 147 | def simplify(self, val): |
no outgoing calls
no test coverage detected