Click or drag to resize
CanvasGeometry.CombineWith Method (CanvasGeometry, Matrix3x2, CanvasGeometryCombine, Single)
Returns the combination of this geometry and the specified geometry according to the specified combine operation, such as union, intersection, etc.

Namespace:  Microsoft.Graphics.Canvas.Geometry
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public CanvasGeometry CombineWith(
	CanvasGeometry otherGeometry,
	Matrix3x2 otherGeometryTransform,
	CanvasGeometryCombine combine,
	float flatteningTolerance
)

Parameters

otherGeometry
Type: Microsoft.Graphics.Canvas.Geometry.CanvasGeometry
otherGeometryTransform
Type: System.Numerics.Matrix3x2
combine
Type: Microsoft.Graphics.Canvas.Geometry.CanvasGeometryCombine
flatteningTolerance
Type: System.Single

Return Value

Type: CanvasGeometry
Remarks
Uses the specified flattening tolerance and transform applied to the input geometry.
See Also