(Vec3 vec)
| 58 | } |
| 59 | |
| 60 | public double dotProduct(Vec3 vec) |
| 61 | { |
| 62 | return this.xCoord * vec.xCoord + this.yCoord * vec.yCoord + this.zCoord * vec.zCoord; |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Returns a new vector with the result of this vector x the specified vector. |
no outgoing calls
no test coverage detected