GeometryHandlerOnBeginCircle Method |
This method is called when a circle has been encountered.
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 OnBeginCircle(
int shapeId,
double[] center,
double radius,
double[] normalVector,
double[] extrusionVector
)
Public Overridable Function OnBeginCircle (
shapeId As Integer,
center As Double(),
radius As Double,
normalVector As Double(),
extrusionVector As Double()
) As DwgReduction
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. - center
- Type: SystemDouble
The center of the circle in Cartesian coordinates - radius
- Type: SystemDouble
The radius of the circle. - 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.
Return Value
Type:
DwgReduction Return DwgReduction.Reduce to request that the shape should be reduced further, DwgReduction.DontReduce
otherwise.
See Also