Provides access to members that control the 3D frame transformation with rotation, translation, scaling, and XYZ center of rotation.
Members
| Name | Description | |
|---|---|---|
![]() |
GetParameters | Returns translation, rotation, scale, and XYZ center of rotation values of the transformation. |
![]() |
GetSpatialReferences | Returns the from and to spatial references for the transformation. |
![]() |
Name | The name of the geographic transformation. |
![]() |
PutParameters | Sets translation, rotation, scale, and XYZ center of rotation values for the transformation. |
![]() |
PutSpatialReferences | Sets the from and to spatial references for the transformation. |
![]() |
TransformMeasuresFF | Transforms floating point measures to floating point measures (or do the inverse). |
![]() |
TransformMeasuresFI | Transforms floating point measures to integer measures (or do the inverse). |
![]() |
TransformMeasuresIF | Transforms integer measures to floating point measures (or do the inverse). |
![]() |
TransformMeasuresII | Transforms integer measures to integer measures (or do the inverse). |
![]() |
TransformPointsFF | Transforms floating point points to floating point points (or do the inverse). |
![]() |
TransformPointsFI | Transforms floating point points to integer points (or do the inverse). |
![]() |
TransformPointsIF | Transforms integer points to floating point points (or do the inverse). |
![]() |
TransformPointsII | Transforms integer points to integer points (or do the inverse). |
IMolodenskyBadekasTransformation.GetParameters Method
Returns translation, rotation, scale, and XYZ center of rotation values of the transformation.
Public Sub GetParameters ( _
    ByRef dx As Double, _
    ByRef dy As Double, _
    ByRef dz As Double, _
    ByRef rx As Double, _
    ByRef ry As Double, _
    ByRef rz As Double, _
    ByRef s As Double, _
    ByRef xcr As Double, _
    ByRef ycr As Double, _
    ByRef zcr As Double _
)
public void GetParameters (
    ref double dx,
    ref double dy,
    ref double dz,
    ref double rx,
    ref double ry,
    ref double rz,
    ref double s,
    ref double xcr,
    ref double ycr,
    ref double zcr
);
IMolodenskyBadekasTransformation.PutParameters Method
Sets translation, rotation, scale, and XYZ center of rotation values for the transformation.
Public Sub PutParameters ( _
    ByVal dx As Double, _
    ByVal dy As Double, _
    ByVal dz As Double, _
    ByVal rx As Double, _
    ByVal ry As Double, _
    ByVal rz As Double, _
    ByVal s As Double, _
    ByVal xcr As Double, _
    ByVal ycr As Double, _
    ByVal zcr As Double _
)
public void PutParameters (
    double dx,
    double dy,
    double dz,
    double rx,
    double ry,
    double rz,
    double s,
    double xcr,
    double ycr,
    double zcr
);
Inherited Interfaces
| Interfaces | Description |
|---|---|
| IGeoTransformation | Provides access to members that define a geographic (datum) transformation. |
| ITransformation | Provides access to members that apply a function (or its inverse) to a set of points or measures. The suffix of each method indicates the type of parameters operated on. |
Classes that implement IMolodenskyBadekasTransformation
| Classes | Description |
|---|---|
| MolodenskyBadekasTransformation | Creates a Molodensky-Badekas transformation. |

