com.PostHorizon.renderMan
Class Point

java.lang.Object
  |
  +--com.PostHorizon.renderMan.Point

public class Point
extends java.lang.Object


Constructor Summary
Point()
           
Point(double[] data_)
           
Point(double[] data_, boolean createCopy)
           
Point(double x, double y, double z)
           
Point(Point p)
           
 
Method Summary
 java.lang.Object clone()
           
 double getComponent(int i)
           
 double[] getComponents()
           
 double getX()
           
 double getY()
           
 double getZ()
           
 void setComponent(int i, double a)
           
 void setX(double a)
           
 void setY(double a)
           
 void setZ(double a)
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Point

public Point()

Point

public Point(double x,
             double y,
             double z)

Point

public Point(Point p)

Point

public Point(double[] data_)

Point

public Point(double[] data_,
             boolean createCopy)
Method Detail

clone

public java.lang.Object clone()

getX

public double getX()

getY

public double getY()

getZ

public double getZ()

setX

public void setX(double a)

setY

public void setY(double a)

setZ

public void setZ(double a)

getComponent

public double getComponent(int i)

setComponent

public void setComponent(int i,
                         double a)

getComponents

public double[] getComponents()