| 135 | |
| 136 | |
| 137 | class CT_PositiveSize2D(ElementBase): |
| 138 | """<a:ext>""" |
| 139 | def _init(self): |
| 140 | _required_attribute(self, 'cx', default='0') |
| 141 | _required_attribute(self, 'cy', default='0') |
| 142 | |
| 143 | # attribute accessors ------------- |
| 144 | cx = property(lambda self: self.get('cx'), |
| 145 | lambda self, value: self.set('cx', value)) |
| 146 | cy = property(lambda self: self.get('cy'), |
| 147 | lambda self, value: self.set('cy', value)) |
| 148 | |
| 149 | |
| 150 | class CT_PresetGeometry2D(ElementBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…