javax.vecmath
Class Point4i
- Serializable
public class Point4i
implements Serializable
A 4 element point that is represented by signed integer x,y,z and w coordinates.
specification 1.2, implementation $Revision: 1.1 $, $Date: 1999/11/25 10:29:35 $
Point4i() - Constructs and initializes a Point4i to (0,0,0,0).
|
Point4i(int x, int y, int z, int w) - Constructs and initializes a Point4i from the specified xyzw coordinates.
|
Point4i(Point4i t1) - Constructs and initializes a Point4i from the specified Point4i.
|
Point4i(t[] ) - Constructs and initializes a Point4i from the specified array.
|
absolute , absolute , add , add , clamp , clamp , clampMax , clampMax , clampMin , clampMin , equals , get , get , hashCode , negate , negate , scale , scale , scaleAdd , scaleAdd , set , set , set , sub , sub , toString |
Point4i
public Point4i()
Constructs and initializes a Point4i to (0,0,0,0).
Point4i
public Point4i(int x,
int y,
int z,
int w)
Constructs and initializes a Point4i from the specified xyzw coordinates.
x
- the x coordinatey
- the y coordinatez
- the z coordinatew
- the w coordinate
Point4i
public Point4i(Point4i t1)
Constructs and initializes a Point4i from the specified Point4i.
t1
- the Point4i containing the initialization x y z w data
Point4i
public Point4i(t[] )
Constructs and initializes a Point4i from the specified array.