- pts
- The input logical points
- matrix
- The transformation matrix to use.
| 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++/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.Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code