All Packages Class Hierarchy This Package Previous Next Index
Class Texte3D.MonPoint3D
java.lang.Object
|
+----Texte3D.MonPoint3D
- public class MonPoint3D
- extends Object
A class corresponding to a 3D coordinates
- Author:
- Sylvain Leterreur, Laure Ottavj
MonPoint3D(int, int, int)
-
MonPoint3D(MonPoint3D)
-
getCoordXY()
- Get the x and y coordinates
getCoordXZ()
- Get the x and z coordinates
getCoordZY()
- Get the z and y coordinates
getX()
- Get the x coordinate
getY()
- Get the y coordinate
getZ()
- Get the z coordinate
setCoordXY(int, int)
- Set the x and y coordinates
setCoordXZ(int, int)
- Set the x and z coordinate
setCoordZY(int, int)
- Set the z and y coordinate
MonPoint3D
public MonPoint3D(MonPoint3D p)
MonPoint3D
public MonPoint3D( int x,
int y,
int z)
getCoordXY
public Point getCoordXY()
- Get the x and y coordinates
- Returns:
- Point the x, y coordinates
setCoordXY
public void setCoordXY( int x,
int y)
- Set the x and y coordinates
- Parameters:
- int - the new x coordinate
- int - the new y coordinate
getCoordXZ
public Point getCoordXZ()
- Get the x and z coordinates
- Returns:
- Point the x, z coordinates
setCoordXZ
public void setCoordXZ( int x,
int z)
- Set the x and z coordinate
- Parameters:
- int - the new x coordinate
- int - the new z coordinate
getCoordZY
public Point getCoordZY()
- Get the z and y coordinates
- Returns:
- Point the z, y coordinates
setCoordZY
public void setCoordZY( int z,
int y)
- Set the z and y coordinate
- Parameters:
- int - the new z coordinate
- int - the new y coordinate
getX
public int getX()
- Get the x coordinate
- Returns:
- int the x coordinate
getY
public int getY()
- Get the y coordinate
- Returns:
- int the y coordinate
getZ
public int getZ()
- Get the z coordinate
- Returns:
- int the z coordinate
All Packages Class Hierarchy This Package Previous Next Index