com.esri.arcgis.geometry
Interface IAffineTransformation2D3

All Superinterfaces:
IAffineTransformation2D, IAffineTransformation2D2, ITransformation, java.io.Serializable
All Known Implementing Classes:
AffineTransformation2D, IAffineTransformation2D3Proxy

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, java.io.Serializable

Provides access to members that define and manipulate affine transformations.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux


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

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

Supported Platforms

Windows, Solaris, Linux

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.

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

queryLinearCoefficients

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

Supported Platforms

Windows, Solaris, Linux

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.

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

setLinearCoefficients

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

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