LEADTOOLS GDI/GDI+ (Leadtools.Drawing assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
TransformPoints Method
See Also 



pts
The input logical points
matrix
The transformation matrix to use.
pts
The input logical points
matrix
The transformation matrix to use.
Converts the specified points from logical to physical coordinates.

Syntax

Visual Basic (Declaration) 
Public Shared Function TransformPoints( _
   ByVal pts() As PointF, _
   ByVal matrix As Matrix _
) As PointF()
Visual Basic (Usage)Copy Code
Dim pts() As PointF
Dim matrix As Matrix
Dim value() As PointF
 
value = Transformer.TransformPoints(pts, matrix)
C# 
public static PointF[] TransformPoints( 
   PointF[] pts,
   Matrix matrix
)
C++/CLI 
public:
static array<PointF>^ TransformPoints( 
   array<PointF>^ pts,
   Matrix^ matrix
) 

Parameters

pts
The input logical points
matrix
The transformation matrix to use.

Return Value

The points converted from logical to physical coordinates.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also