Glg Toolkit

com.genlogic
Class GlgPoint

java.lang.Object
  extended bycom.genlogic.GlgPoint

public class GlgPoint
extends java.lang.Object

Defines an XYZ point in 3D space or an RGB color.


Field Summary
 double x
          X, Y and Z or R, G and B values.
 double y
          X, Y and Z or R, G and B values.
 double z
          X, Y and Z or R, G and B values.
 
Constructor Summary
GlgPoint()
          Default contsructor.
GlgPoint(double x_p, double y_p, double z_p)
          Constructs a new GlgPoint with specified values.
GlgPoint(GlgPoint point)
          Copy constructor.
 
Method Summary
 void CopyFrom(GlgPoint point)
          Copies values from another GlgPoint.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x

public double x
X, Y and Z or R, G and B values.


y

public double y
X, Y and Z or R, G and B values.


z

public double z
X, Y and Z or R, G and B values.

Constructor Detail

GlgPoint

public GlgPoint()
Default contsructor.


GlgPoint

public GlgPoint(double x_p,
                double y_p,
                double z_p)
Constructs a new GlgPoint with specified values.


GlgPoint

public GlgPoint(GlgPoint point)
Copy constructor.

Method Detail

CopyFrom

public void CopyFrom(GlgPoint point)
Copies values from another GlgPoint.


Glg Toolkit