dxfExporter
Class DXFPoint

java.lang.Object
  extended bydxfExporter.DXFPoint

public class DXFPoint
extends java.lang.Object

Defines the x-, y- and z- coordinates of a 3D point in DXF drawing units.


Field Summary
 float X
          Specifies the X-coordinate of the point.
 float Y
          Specifies the Y-coordinate of the point.
 float Z
          Specifies the Z-coordinate of the point.
 
Constructor Summary
DXFPoint()
          Constructs (0, 0, 0) point.
DXFPoint(DXFPoint Pt)
           
DXFPoint(float X, float Y, float Z)
           
 
Method Summary
 void setTo(float X, float Y, float Z)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

X

public float X
Specifies the X-coordinate of the point.


Y

public float Y
Specifies the Y-coordinate of the point.


Z

public float Z
Specifies the Z-coordinate of the point.

Constructor Detail

DXFPoint

public DXFPoint()
Constructs (0, 0, 0) point.


DXFPoint

public DXFPoint(float X,
                float Y,
                float Z)

DXFPoint

public DXFPoint(DXFPoint Pt)
Method Detail

setTo

public void setTo(float X,
                  float Y,
                  float Z)