Uses of Class
net.jinx.slowmath.Vector

Packages that use Vector
net.jinx.slowmath   
 

Uses of Vector in net.jinx.slowmath
 

Methods in net.jinx.slowmath that return Vector
 Vector Vector.abs()
          Returns a Vector whose components have had their sign removed.
 Vector Vector.add(Real v)
          Returns the result of adding v to this Vector.
 Vector Vector.add(Vector v)
          Returns the result of adding v to this Vector.
 Vector Vector.cross(Vector v)
          Returns a Vector whose value is the cross product of this and v.
 Vector Vector.divide(Real v)
          Returns the result of this Vector divided by v.
 Vector Vector.divide(Vector v)
          Returns the result of this Vector divided by v.
 Vector Quaternion.getV()
           
 Vector Vector.multiply(Real v)
          Returns the result of multiplying v with this Vector.
 Vector Vector.multiply(Vector v)
          Returns the result of multiplying v with this Vector.
 Vector Vector.negate()
          Negates each component of this Vector.
 Vector Vector.normalize()
          Divides this Vector by it's magnitude to produce a normalized version of it.
static Vector MathUtil.parseVector(java.lang.String s)
          Parses a Vector from the String.
 Vector Vector.subtract(Real v)
          Returns the result of subtracting v from this Vector.
 Vector Vector.subtract(Vector v)
          Returns the result of subtracting v from this Vector.
 Vector Matrix3D.transform(Vector v)
          Transforms v and returns the result.
 

Methods in net.jinx.slowmath with parameters of type Vector
 Vector Vector.add(Vector v)
          Returns the result of adding v to this Vector.
 Vector Vector.cross(Vector v)
          Returns a Vector whose value is the cross product of this and v.
 Vector Vector.divide(Vector v)
          Returns the result of this Vector divided by v.
 Real Vector.dot(Vector v)
          Returns a Vector whose value is the dot product of this and v.
 Vector Vector.multiply(Vector v)
          Returns the result of multiplying v with this Vector.
 Matrix3D Matrix3D.rotate(Vector v)
          Applies a rotation transformation and returns the result.
static Matrix3D Matrix3D.rotationMatrix(Vector v)
          Constructs a rotation Matrix3D for v.
 Matrix3D Matrix3D.scale(Vector v)
          Applies a scale transformation and returns the result.
static Matrix3D Matrix3D.scalingMatrix(Vector v)
          Constructs a scaling Matrix3D.
 Vector Vector.subtract(Vector v)
          Returns the result of subtracting v from this Vector.
 Vector Matrix3D.transform(Vector v)
          Transforms v and returns the result.
 Matrix3D Matrix3D.translate(Vector v)
          Applies a translation transformation and returns the result.
static Matrix3D Matrix3D.translationMatrix(Vector v)
          Constructs a translation Matrix3D.
 

Constructors in net.jinx.slowmath with parameters of type Vector
Quaternion(Vector v, Real w)