transform_points method

transform_points {#aspose.pydrawing.PointF[]}

Applies the affine transformation represented by this Matrix to a specified array of points.

def transform_points(self, points):
    ...
ParameterTypeDescription
pointsaspose.pydrawing.PointF[]The points.

transform_points {#aspose.pydrawing.PointF[]-int-int}

Applies the affine transformation represented by this Matrix to a specified part of array of points.

def transform_points(self, points, start_index, number_of_points):
    ...
ParameterTypeDescription
pointsaspose.pydrawing.PointF[]The points.
start_indexintThe start index.
number_of_pointsintThe number of points.

See Also