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
파일 보기 프로젝트 열기: gkrsu/maparound.core 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
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