Uses of Class
javax.vecmath.Vector4f

Packages that use Vector4f
javax.vecmath   
 

Uses of Vector4f in javax.vecmath
 

Methods in javax.vecmath with parameters of type Vector4f
 float Vector4f.angle(Vector4f v1)
          Returns the (4-space) angle in radians between this vector and the vector parameter; the return value is constrained to the range [0,PI].
 float Vector4f.dot(Vector4f v1)
          returns the dot product of this vector and v1
 void Matrix4f.getColumn(int column, Vector4f v)
          Copies the matrix values in the specified column into the vector parameter.
 void Matrix4f.getRow(int row, Vector4f v)
          Copies the matrix values in the specified row into the vector parameter.
 void Vector4f.normalize(Vector4f v1)
          Sets the value of this vector to the normalization of vector v1.
 void Matrix4f.setColumn(int column, Vector4f v)
          Sets the specified column of this matrix4f to the vector provided.
 void Matrix4f.setRow(int row, Vector4f v)
          Sets the specified row of this matrix4f to the Vector provided.
 

Constructors in javax.vecmath with parameters of type Vector4f
Vector4d(Vector4f v1)
          Constructs and initializes a Vector4d from the specified Vector4f.
Vector4f(Vector4f v1)
          Constructs and initializes a Vector4f from the specified Vector4f.