Package com.reportmill.graphics
Class RMPoint3D
- java.lang.Object
 - 
- com.reportmill.graphics.RMPoint3D
 
 
- 
- All Implemented Interfaces:
 java.lang.Cloneable
public class RMPoint3D extends java.lang.Object implements java.lang.CloneableThis class represents a 3D point. 
- 
- 
Constructor Summary
Constructors Constructor Description RMPoint3D(float x, float y, float z)Creates a new point3d from the x, y, z coords. 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()implements Cloneable interfacebooleanequals(java.lang.Object anObj)Standard equals implementation.java.lang.StringtoString()Returns a string representation of the point.RMPoint3Dtransform(RMTransform3D xform)Transforms the point by the given transform3d. 
 - 
 
- 
- 
Method Detail
- 
transform
public RMPoint3D transform(RMTransform3D xform)
Transforms the point by the given transform3d. 
- 
equals
public boolean equals(java.lang.Object anObj)
Standard equals implementation.- Overrides:
 equalsin classjava.lang.Object
 
- 
clone
public java.lang.Object clone()
implements Cloneable interface- Overrides:
 clonein classjava.lang.Object
 
- 
toString
public java.lang.String toString()
Returns a string representation of the point.- Overrides:
 toStringin classjava.lang.Object
 
 - 
 
 -