Returns the conjugated dot product: `conj(self)` dot `v`.
(self, v)
| 179 | return self.x * v.x + self.y * v.y + self.z * v.z |
| 180 | |
| 181 | def cdot(self, v): |
| 182 | """Returns the conjugated dot product: `conj(self)` dot `v`.""" |
| 183 | return self.conj().dot(v) |
| 184 | |
| 185 | def cross(self, v): |
| 186 | """ |