| 122 | |
| 123 | |
| 124 | class CT_Point2D(ElementBase): |
| 125 | """<a:off>""" |
| 126 | def _init(self): |
| 127 | _required_attribute(self, 'x', default='0') |
| 128 | _required_attribute(self, 'y', default='0') |
| 129 | |
| 130 | # attribute accessors ------------- |
| 131 | x = property(lambda self: self.get('x'), |
| 132 | lambda self, value: self.set('x', value)) |
| 133 | y = property(lambda self: self.get('y'), |
| 134 | lambda self, value: self.set('y', value)) |
| 135 | |
| 136 | |
| 137 | class CT_PositiveSize2D(ElementBase): |
nothing calls this directly
no test coverage detected
searching dependent graphs…