Click or drag to resize

GeometryHandlerOnBeginSimplePolyline Method

Describes an open polygon to be drawn.

Namespace:  Atalasoft.Imaging.Codec.CadCam
Assembly:  Atalasoft.dotImage.Dwg (in Atalasoft.dotImage.Dwg.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public virtual DwgReduction OnBeginSimplePolyline(
	int shapeId,
	double[] vertices,
	double[] normalVector,
	double[] extrusionVector,
	int baseSubEntMarker
)

Parameters

shapeId
Type: SystemInt32
A unique identifier for this shape. When Distill is done reducing a shape, OnEnd... will be called with this shape identifier.
vertices
Type: SystemDouble
An array of three dimensional points describing the polygon to be drawn.
normalVector
Type: SystemDouble
The normal vector from the surface of the shape in 3D coordinates in the order X, Y, Z.
extrusionVector
Type: SystemDouble
A vector describing direction and length of how this object should be extruded.
baseSubEntMarker
Type: SystemInt32

This parameter is currently unusued.

Return Value

Type: DwgReduction
Return DwgReduction.Reduce to request that the shape should be reduced further, DwgReduction.DontReduce otherwise.
See Also