Click or drag to resize

ClipperOffsetDeltaCallback64 Delegate

Represents a callback that can provide a custom delta per vertex.

Namespace: Clipper2Lib
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public delegate double DeltaCallback64(
	Path64 path,
	PathD path_norms,
	int currPt,
	int prevPt
)

Parameters

path  Path64
The source path.
path_norms  PathD
The unit normals of the path.
currPt  Int32
The current vertex index.
prevPt  Int32
The previous vertex index.

Return Value

Double
The delta to use at the specified vertex.
See Also