(self, x=0.0, y=0.0, z=0.0)
| 162 | self.isDirty = True |
| 163 | |
| 164 | def scale(self, x=0.0, y=0.0, z=0.0): |
| 165 | if x == y == z == 0.0: |
| 166 | return |
| 167 | offset = om2.MVector(x, y, z) |
| 168 | self.transform.scaleBy(offset, om2.MSpace.kWorld) |
| 169 | self.isDirty = True |
| 170 | |
| 171 | # === Primitive callbacks === |
| 172 |