PathTransformAdded Method

Transforms the already added items in this Path instance by applying the specified matrix. This method does not change the value of the Transformation property.

Definition

Namespace: KGySoft.Drawing.Shapes
Assembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.1.1
C#
public Path TransformAdded(
	TransformationMatrix matrix
)

Parameters

matrix  TransformationMatrix
The TransformationMatrix to apply.

Return Value

Path
The current Path instance.

Remarks

To leave the current instance intact and return a new one, use the static Transform method instead.

To set the transformation for the items added afterward only, use the TransformTranslation, TransformRotation, TransformTranslation or TransformScale methods.

See Also