IMathTransformPoint(Matrix, PointD) Method

Transforms a Point with the matrix Mat. You can easily do it yourself, but here is a way to do it with one line code.

Definition

Namespace: PCBI.MathUtils
Assembly: PCB-Investigator (in PCB-Investigator.exe) Version: 0
C#
public static PointD TransformPoint(
	Matrix Mat,
	PointD Point
)

Parameters

Mat  Matrix
Transform information for the Point.
Point  PointD
The relevant point to transform.

Return Value

PointD
New transformt point.

See Also