- opAssignVector3!(T) opAssign(Vector3!(E) otherVector) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opBinaryVector3!(T) opBinary(Vector3!(E) otherVector) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opBinaryVector3!(T) opBinary(E num) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opOpAssignVector3!(T) opOpAssign(Vector3!(E) otherVector) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opOpAssignVector3!(T) opOpAssign(E num) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- opUnaryVector3!(T) opUnary() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- toStringstring toString() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
Utility template struct for manipulating 3-dimensional vectors
Vector3 is a simple class that defines a mathematical vector with three coordinates (x, y and z).
It can be used to represent anything that has three dimensions: a size, a point, a velocity, etc.
The template parameter T is the type of the coordinates. It can be any type that supports arithmetic operations (+, -, /, *) and comparisons (==, !=), for example int or float.