com.esri.arcgis.geometry
Interface ITransformation3D

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
AffineTransformation3D, ITransformation3DProxy

public interface ITransformation3D
extends java.io.Serializable

COM Interface 'ITransformation3D'. Generated 3/19/2015 1:20:58 PM from 'C:\ArcGIS\COM\esriGeometry.olb'

Description: 'Provides access to members that control a 3D affine transformation.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDc06e0427_90d2_11d3_9f5c_00c04f6bc5f4
           
static int xxDummy
          Deprecated. Internal use only
 
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(int numPoints, _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.
 

Field Detail

IIDc06e0427_90d2_11d3_9f5c_00c04f6bc5f4

static final int IIDc06e0427_90d2_11d3_9f5c_00c04f6bc5f4
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

reset

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

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

translate

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

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

scale

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

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

rotate

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

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

postMultiply

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

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

preMultiply

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

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

transform

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

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:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.