matrixTransform method
Applies the given 2×3 matrix transformation on this SVGPoint object and returns a new, transformed SVGPoint object.
![]() ![]() |
Syntax
var retval = SVGPoint.matrixTransform(pMatrix);Parameters
- pMatrix [in]
-
Type: ISVGMatrix
The 2×3 transformation matrix to apply to this SVGPoint object.
Return value
Type: ISVGPoint
The transformed SVGPoint object.
Standards information
Remarks
Using the above terminology, the follow pseudo-code describes the order of the transformation matrix multiplication:
ppResult = pMatrix · SVGPoint
See also
Show:

