C# Класс 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.
Наследование: MathTransform
Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
InverseTransform IMathTransform

Открытые методы

Метод Описание
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.

Описание методов

ConcatenatedTransform() публичный Метод

Initializes a new instance of the MapAround.CoordinateSystems.Transformations.ConcatenatedTransform.
public ConcatenatedTransform ( ) : System
Результат System

ConcatenatedTransform() публичный Метод

Initializes a new instance of the MapAround.CoordinateSystems.Transformations.ConcatenatedTransform.
public ConcatenatedTransform ( List transformlist ) : System
transformlist List
Результат System

Inverse() публичный Метод

Creates the inverse transform of this object.
This method may fail if the transform is not one to one.
public Inverse ( ) : IMathTransform
Результат IMathTransform

Invert() публичный Метод

Inverts this transform.
public Invert ( ) : void
Результат void

Transform() публичный Метод

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
Результат double[]

TransformList() публичный Метод

Transforms a list of coordinate point ordinal values.
public TransformList ( List points ) : List
points List Packed ordinates of points to transform
Результат List

Описание свойств

InverseTransform защищенное свойство

The inverse transformation.
protected IMathTransform InverseTransform
Результат IMathTransform