(self)
| 205 | return line * (self.dot(line) / (lineLength * lineLength)) |
| 206 | |
| 207 | def distanceToPlane(self): |
| 208 | raise NotImplementedError("Have not needed this yet, but OCCT supports it!") |
| 209 | |
| 210 | def projectToPlane(self, plane: "Plane") -> "Vector": |
| 211 | """ |
no outgoing calls