dzzd
Interface IAxis3D


public interface IAxis3D

Interface used for accessing to a 3D axis with an origine and its ax,ay,az vectors components.

Usualy axis are used to define 3D scene objects local axes


Overwiev of 3D scene objects local axes :

Since:
1.0
Version:
1.0, 01/01/04
Author:
Bruno Augier
See Also:
IScene3DObject, IPoint3D

Method Summary
 IPoint3D getAX()
          Gets x vector axis (ax) in the current space.
 IPoint3D getAY()
          Gets y vector axis (ay) in the current space.
 IPoint3D getAZ()
          Gets z vector axis (az) in the current space.
 IPoint3D getOrigin()
          Gets origine for axis in the current space
 

Method Detail

getAX

public IPoint3D getAX()
Gets x vector axis (ax) in the current space.

Returns:
interface to acces to x,y,z components of the x axis (ax)
Since:
1.0

getAY

public IPoint3D getAY()
Gets y vector axis (ay) in the current space.

Returns:
interface to acces to x,y,z components of the y axis (ay)
Since:
1.0

getAZ

public IPoint3D getAZ()
Gets z vector axis (az) in the current space.

Returns:
interface to acces to x,y,z components of the z axis (az)
Since:
1.0

getOrigin

public IPoint3D getOrigin()
Gets origine for axis in the current space

Returns:
interface to acces to x,y,z components of the origine of the axis
Since:
1.0