Click or drag to resize
CanvasGeometry.CombineWith Method (CanvasGeometry, Matrix3x2, CanvasGeometryCombine)
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
)

Parameters

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

Return Value

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