Click or drag to resize

IScatterSymbolCalculatePolygons Method

Calculates the polygons of the outer frame, the inner frame, and the inset.

Namespace: Altaxo.Graph.Graph2D.Plot.Styles
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void CalculatePolygons(
	double? relativeStructureWidth,
	out List<List<IntPoint>>? framePolygon,
	out List<List<IntPoint>>? insetPolygon,
	out List<List<IntPoint>>? fillPolygon
)

Parameters

relativeStructureWidth  NullableDouble
The relative width of the internal structures, e.g. the frame, relative to the symbol size. If this argument is null, the value of this instance (RelativeStructureWidth) will be used.
framePolygon  ListListIntPoint
On return: the frame polygon (null if no frame present).
insetPolygon  ListListIntPoint
On return: the inset polygon (null if no inset present).
fillPolygon  ListListIntPoint
On return: the fill polygon (null if no fill shape present).
See Also