Uses of Class
javax.vecmath.Vector2d

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

Uses of Vector2d in javax.vecmath
 

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

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