com.esri.arcgis.geometry
Interface ITransformation3DGEN

All Superinterfaces:
Serializable
All Known Implementing Classes:
AffineTransformation3D

public interface ITransformation3DGEN
extends Serializable

Provides access to members that control a 3D affine transformation. ITransformation3DGEN is generic version of ITransformation3D.

Product Availability

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


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

Method Detail

reset

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

Product Availability

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

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

translate

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

Product Availability

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

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
Adds a scaling factor to the transformation matrix.

Product Availability

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

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
Adds a rotation in radians to the transformation matrix.

Product Availability

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

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
Post-multiplies the transformation by another transformation.

Product Availability

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

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
Pre-multiplies the transformation by another transformation.

Product Availability

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

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(_WKSPointZ[] originalPoints,
               _WKSPointZ[][] transformedPoints)
               throws IOException,
                      AutomationException
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.

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