Uses of Class
javax.vecmath.Vector2f

Packages that use Vector2f
javax.vecmath Provides 3D vector mathematics classes. 
 

Uses of Vector2f in javax.vecmath
 

Methods in javax.vecmath with parameters of type Vector2f
 float Vector2f.angle(Vector2f v1)
          Returns the angle in radians between this vector and the vector parameter; the return value is constrained to the range [0,PI].
 float Vector2f.dot(Vector2f v1)
          Computes the dot product of the this vector and vector v1.
 void Vector2f.normalize(Vector2f v1)
          Sets the value of this vector to the normalization of vector v1.
 

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