Returns the dot product of this vector and vector v1. @param v1 the other vector @return the dot product of this and v1
(Vector3d v1)
| 150 | * @return the dot product of this and v1 |
| 151 | */ |
| 152 | public final double dot(Vector3d v1) { |
| 153 | return (this.x * v1.x + this.y * v1.y + this.z * v1.z); |
| 154 | } |
| 155 | |
| 156 | |
| 157 | /** |