com.esri.arcgis.geometry
Interface ITransformation3D

All Superinterfaces:
Serializable
All Known Implementing Classes:
AffineTransformation3D

Deprecated. This interface uses C style arrays which are not supported in the ArcGIS API for Java. It is replaced by ITransformation3DGEN. You can use the GEN interface proxy's Object-constructor to cast an instance of this interface to its GEN equivalent. Any ArcGIS class that implements this interface also implements the GEN interface.

public interface ITransformation3D
extends Serializable

Provides access to members that control a 3D affine transformation.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 void postMultiply(ITransformation3D postTransform)
          Deprecated. Post-multiplies the transformation by another transformation.
 void preMultiply(ITransformation3D preTransform)
          Deprecated. Pre-multiplies the transformation by another transformation.
 void reset()
          Deprecated. Resets the transformation to unit matrix.
 void rotate(double rotationAngle, IVector3D rotationAxis)
          Deprecated. Adds a rotation in radians to the transformation matrix.
 void scale(double sx, double sy, double sz)
          Deprecated. Adds a scaling factor to the transformation matrix.
 void transform(int numPoints, _WKSPointZ originalPoints, _WKSPointZ[] transformedPoints)
          Deprecated. Applies the current transformation to a set of points.
 void translate(IVector3D offsetVector)
          Deprecated. Adds an offset (move) to the transformation matrix.
 

Method Detail

reset

void reset()
           throws IOException,
                  AutomationException
Deprecated. 
Resets the transformation to unit matrix.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

translate

void translate(IVector3D offsetVector)
               throws IOException,
                      AutomationException
Deprecated. 
Adds an offset (move) to the transformation matrix.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
offsetVector - A reference to a com.esri.arcgis.geometry.IVector3D (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

scale

void scale(double sx,
           double sy,
           double sz)
           throws IOException,
                  AutomationException
Deprecated. 
Adds a scaling factor to the transformation matrix.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
sx - The sx (in)
sy - The sy (in)
sz - The sz (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

rotate

void rotate(double rotationAngle,
            IVector3D rotationAxis)
            throws IOException,
                   AutomationException
Deprecated. 
Adds a rotation in radians to the transformation matrix.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
rotationAngle - The rotationAngle (in)
rotationAxis - A reference to a com.esri.arcgis.geometry.IVector3D (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

postMultiply

void postMultiply(ITransformation3D postTransform)
                  throws IOException,
                         AutomationException
Deprecated. 
Post-multiplies the transformation by another transformation.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
postTransform - A reference to a com.esri.arcgis.geometry.ITransformation3D (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

preMultiply

void preMultiply(ITransformation3D preTransform)
                 throws IOException,
                        AutomationException
Deprecated. 
Pre-multiplies the transformation by another transformation.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
preTransform - A reference to a com.esri.arcgis.geometry.ITransformation3D (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

transform

void transform(int numPoints,
               _WKSPointZ originalPoints,
               _WKSPointZ[] transformedPoints)
               throws IOException,
                      AutomationException
Deprecated. 
Applies the current transformation to a set of points. Use of methods on ITransform3D is recommended instead of this method.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Supported Platforms

Windows, Solaris, Linux

Parameters:
numPoints - The numPoints (in)
originalPoints - A Structure: com.esri.arcgis.system._WKSPointZ (A com.esri.arcgis.system._WKSPointZ COM typedef) (in)
transformedPoints - A Structure: com.esri.arcgis.system._WKSPointZ (A com.esri.arcgis.system._WKSPointZ COM typedef) (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.