Uses of Class
math.Vector

Packages that use Vector
math   
 

Uses of Vector in math
 

Subclasses of Vector in math
 class Point3D
          a 3 dimensional point
 class Vector3D
          a three dimensional vector extending the 4 vector the fourth component is therefor 0
 

Methods in math that return Vector
static Vector MatrixOps.multiply(Matrix4x4 m, Vector v)
          multiplies a matrix with a 4 vector
static Vector MatrixOps.multiply(Vector v, Matrix4x4 m)
          multiplies a matrix from left with a vector
 

Methods in math with parameters of type Vector
 double Vector.dot(Vector v)
          calculates the scalar product
static Vector MatrixOps.multiply(Matrix4x4 m, Vector v)
          multiplies a matrix with a 4 vector
static Vector MatrixOps.multiply(Vector v, Matrix4x4 m)
          multiplies a matrix from left with a vector
static Point3D VectorOps.toPoint3D(Vector v)
          converts a 4-vector to a 3d-point
static Vector3D VectorOps.toVector3D(Vector v)
          converts a 4-vector to a 3-vector