java.lang.Object
javax.vecmath.Tuple2f
javax.vecmath.Vector2f
- All Implemented Interfaces:
Serializable
,Cloneable
A 2 element vector that is represented by single precision
floating point x,y coordinates.
- Version:
- specification 1.1, implementation $Revision: 1.9 $, $Date: 1999/10/05 07:03:50 $
- Author:
- Kenji hiranabe
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorsConstructorDescriptionVector2f()
Constructs and initializes a Vector2f to (0,0).Vector2f
(float[] v) Constructs and initializes a Vector2f from the specified array.Vector2f
(float x, float y) Constructs and initializes a Vector2f from the specified xy coordinates.Constructs and initializes a Vector2f from the specified Tuple2d.Constructs and initializes a Vector2f from the specified Tuple2f.Constructs and initializes a Vector2f from the specified Vector2d.Constructs and initializes a Vector2f from the specified Vector2f. -
Method Summary
Modifier and TypeMethodDescriptionfinal float
Returns the angle in radians between this vector and the vector parameter; the return value is constrained to the range [0,PI].clone()
final float
Computes the dot product of the this vector and vector v1.final float
length()
Returns the length of this vector.final float
Returns the squared length of this vector.final void
Normalizes this vector in place.final void
Sets the value of this vector to the normalization of vector v1.
-
Constructor Details
-
Vector2f
public Vector2f(float x, float y) Constructs and initializes a Vector2f from the specified xy coordinates.- Parameters:
x
- the x coordinatey
- the y coordinate
-
Vector2f
public Vector2f(float[] v) Constructs and initializes a Vector2f from the specified array.- Parameters:
v
- the array of length 2 containing xy in order
-
Vector2f
Constructs and initializes a Vector2f from the specified Vector2f.- Parameters:
v1
- the Vector2f containing the initialization x y data
-
Vector2f
Constructs and initializes a Vector2f from the specified Vector2d.- Parameters:
v1
- the Vector2f containing the initialization x y data
-
Vector2f
Constructs and initializes a Vector2f from the specified Tuple2f.- Parameters:
t1
- the Tuple2f containing the initialization x y data
-
Vector2f
Constructs and initializes a Vector2f from the specified Tuple2d.- Parameters:
t1
- the Tuple2d containing the initialization x y data
-
Vector2f
public Vector2f()Constructs and initializes a Vector2f to (0,0).
-
-
Method Details
-
dot
Computes the dot product of the this vector and vector v1.- Parameters:
v1
- the other vector
-
length
public final float length()Returns the length of this vector.- Returns:
- the length of this vector
-
lengthSquared
public final float lengthSquared()Returns the squared length of this vector.- Returns:
- the squared length of this vector
-
normalize
public final void normalize()Normalizes this vector in place. -
normalize
Sets the value of this vector to the normalization of vector v1.- Parameters:
v1
- the un-normalized vector
-
angle
Returns the angle in radians between this vector and the vector parameter; the return value is constrained to the range [0,PI].- Parameters:
v1
- the other vector- Returns:
- the angle in radians in the range [0,PI]
-
clone
-