javax.vecmath
Class Point3i
- Serializable
public class Point3i
implements Serializable
A 3 element point that is represented by signed integer x,y,z coordinates.
specification 1.2, implementation $Revision: 1.2 $, $Date: 1999/11/25 10:29:35 $
Point3i()- Constructs and initializes a Point3i to (0,0,0).
|
Point3i(int x, int y, int z)- Constructs and initializes a Point3i from the specified xyz coordinates.
|
Point3i(Point3i t1)- Constructs and initializes a Point3i from the specified Point3i.
|
Point3i(t[] )- Constructs and initializes a Point3i 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 |
Point3i
public Point3i()
Constructs and initializes a Point3i to (0,0,0).
Point3i
public Point3i(int x,
int y,
int z) Constructs and initializes a Point3i from the specified xyz coordinates.
x - the x coordinatey - the y coordinatez - the z coordinate
Point3i
public Point3i(Point3i t1)
Constructs and initializes a Point3i from the specified Point3i.
t1 - the Point3i containing the initialization x y z data
Point3i
public Point3i(t[] )
Constructs and initializes a Point3i from the specified array.