C# Class MapAround.CoordinateSystems.Transformations.ConcatenatedTransform

Represents a concatenation of transformations.
A concatenated transform acts in the same way as applying transforms, one after the other. The dimension of the output space of the each transform must match the dimension of the input space in the next transform.
Inheritance: MathTransform
显示文件 Open project: gkrsu/maparound.core Class Usage Examples

Protected Properties

Property Type Description
InverseTransform IMathTransform

Public Methods

Method Description
ConcatenatedTransform ( ) : System

Initializes a new instance of the MapAround.CoordinateSystems.Transformations.ConcatenatedTransform.

ConcatenatedTransform ( List transformlist ) : System

Initializes a new instance of the MapAround.CoordinateSystems.Transformations.ConcatenatedTransform.

Inverse ( ) : IMathTransform

Creates the inverse transform of this object.

This method may fail if the transform is not one to one.

Invert ( ) : void

Inverts this transform.

Transform ( double point ) : double[]

Transforms a coordinate point.

The passed parameter point should not be modified.

TransformList ( List points ) : List

Transforms a list of coordinate point ordinal values.

Method Details

ConcatenatedTransform() public method

Initializes a new instance of the MapAround.CoordinateSystems.Transformations.ConcatenatedTransform.
public ConcatenatedTransform ( ) : System
return System

ConcatenatedTransform() public method

Initializes a new instance of the MapAround.CoordinateSystems.Transformations.ConcatenatedTransform.
public ConcatenatedTransform ( List transformlist ) : System
transformlist List
return System

Inverse() public method

Creates the inverse transform of this object.
This method may fail if the transform is not one to one.
public Inverse ( ) : IMathTransform
return IMathTransform

Invert() public method

Inverts this transform.
public Invert ( ) : void
return void

Transform() public method

Transforms a coordinate point.
The passed parameter point should not be modified.
public Transform ( double point ) : double[]
point double An array containing the point coordinates to transform
return double[]

TransformList() public method

Transforms a list of coordinate point ordinal values.
public TransformList ( List points ) : List
points List Packed ordinates of points to transform
return List

Property Details

InverseTransform protected_oe property

The inverse transformation.
protected IMathTransform InverseTransform
return IMathTransform