(self, points)
| 143 | return self.transformPoints([pt])[0] |
| 144 | |
| 145 | def transformPoints(self, points): |
| 146 | points = _dotProduct(points, self.matrix) |
| 147 | if self.offset != (0, 0, 0): |
| 148 | points = list(_offsetArray3D(points, self.offset)) |
| 149 | return points |
| 150 | |
| 151 | def getAffineTransform2D(self, axis=1): |
| 152 | matrix = self.matrix |
no test coverage detected