void |
Vector3.add(Vector3 other) |
Add each element of other to the corresponding element of this.
|
void |
Point3.copy(Vector3 vec) |
|
void |
Vector3.copy(Vector3 other) |
Make this a copy of other.
|
void |
Vector3.crossProduct(Vector3 other) |
Set this to the cross product of this and other.
|
void |
Vector3.crossProduct(Vector3 A,
Vector3 B) |
Set this to the cross product of A and B.
|
double |
Vector3.dotProduct(Vector3 other) |
Dot product of this and other.
|
void |
Point3.move(Vector3 d) |
Move of given vector d.
|
void |
Vector3.mult(Vector3 other) |
Multiply each element of this by the corresponding element of other.
|
void |
Point3.scale(Vector3 s) |
Scale by factor s.
|
void |
Vector3.sub(Vector3 other) |
Substract each element of other to the corresponding element of this.
|