GeometryHandlerOnBeginCircularArc3Point Method |
Describes a circular using three points.
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 OnBeginCircularArc3Point(
int shapeId,
double[] firstPoint,
double[] secondPoint,
double[] thirdPoint,
DwgArcType arcType,
double[] extrusionVector
)
Public Overridable Function OnBeginCircularArc3Point (
shapeId As Integer,
firstPoint As Double(),
secondPoint As Double(),
thirdPoint As Double(),
arcType As DwgArcType,
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. - firstPoint
- Type: SystemDouble
The starting point of the arc - secondPoint
- Type: SystemDouble
A third point on the arc between the first and third - thirdPoint
- Type: SystemDouble
The ending point of the arc - arcType
- Type: Atalasoft.Imaging.Codec.CadCamDwgArcType
Indicates how the arc is to be drawn. - 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