PathSetTransformation Method

Overwrites the current Transformation with a TransformationMatrix to be applied to the items that are added to the current Path after calling this method.

Definition

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

Parameters

matrix  TransformationMatrix
The new TransformationMatrix to use.

Return Value

Path
This Path instance.

Remarks

This method affects the items that are added after calling this method only. To transform the already added items use the TransformAdded method instead.

See Also