com.esri.arcgis.geometry
Interface IAffineTransformation2D3

All Superinterfaces:
IAffineTransformation2D, IAffineTransformation2D2, ITransformation, Serializable
All Known Implementing Classes:
AffineTransformation2D

Deprecated. This interface uses C style arrays which are not supported in the ArcGIS API for Java. It is replaced by IAffineTransformation2D3GEN. 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 IAffineTransformation2D3
extends IAffineTransformation2D2, Serializable

Provides access to members that define and manipulate affine transformations.

Product Availability

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


Method Summary
 void defineConformalFromControlPoints(int numPoints, IPoint fromPoints, IPoint toPoints)
          Deprecated. Defines the best conformal affine transformation between two sets of points.
 void queryLinearCoefficients(int direction, double[] params)
          Deprecated. Returns the linear coefficients which define the two dimensional affine transformation.
 void setLinearCoefficients(int direction, double[] params)
          Deprecated. Sets the linear coefficients which define the two dimensional affine transformation.
 
Methods inherited from interface com.esri.arcgis.geometry.IAffineTransformation2D2
getMoveOrigin
 
Methods inherited from interface com.esri.arcgis.geometry.IAffineTransformation2D
defineFromControlPoints, defineFromEnvelopes, defineFromEnvelopesEx, defineReflection, getControlPointError, getRMSError, getRotation, getSpatialReference, getXScale, getXTranslation, getYScale, getYTranslation, isReflective, move, moveVector, postMultiply, preMultiply, project, reset, rotate, scale, setMoveOrigin, setSpatialReferenceByRef
 
Methods inherited from interface com.esri.arcgis.geometry.ITransformation
transformMeasuresFF, transformMeasuresFI, transformMeasuresIF, transformMeasuresII, transformPointsFF, transformPointsFI, transformPointsIF, transformPointsII
 

Method Detail

defineConformalFromControlPoints

void defineConformalFromControlPoints(int numPoints,
                                      IPoint fromPoints,
                                      IPoint toPoints)
                                      throws IOException,
                                             AutomationException
Deprecated. 
Defines the best conformal affine transformation between two sets of points. Can be used to register paper maps on a digitizer.

Description

The DefineConformalFromControlPoints method allows defining a Conformal Transformation based on control points arrays. Please see the AffineTransformation2D coclass for a description of the mathematical model.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

queryLinearCoefficients

void queryLinearCoefficients(int direction,
                             double[] params)
                             throws IOException,
                                    AutomationException
Deprecated. 
Returns the linear coefficients which define the two dimensional affine transformation.

Description

The QueryLinearCoefficients method allows to get the linear coefficients (a, b, c, d, e, f) for the current Affine Transformation. Please see the AffineTransformation2D coclass for a description of the mathematical model. The array will contain the parameters in alphabetical order.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
direction - A com.esri.arcgis.geometry.esriTransformDirection constant (in)
params - The params (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setLinearCoefficients

void setLinearCoefficients(int direction,
                           double[] params)
                           throws IOException,
                                  AutomationException
Deprecated. 
Sets the linear coefficients which define the two dimensional affine transformation.

Description

You can use the SetLinearCoordinates method to set the linear coefficients (a, b, c, d, e, f) of the current Affine Transformation. For example, these coefficients may come from another software package and could be used to define the transformation. Please see the AffineTransformation2D coclass for a description of the mathematical model. The parameter values are passed in via an array, in alphabetical order.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
direction - A com.esri.arcgis.geometry.esriTransformDirection constant (in)
params - The params (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.