GeometryHandlerOnBeginXLine Method |
Describes a mathematical infinite line
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 OnBeginXLine(
int shapeId,
double[] firstPoint,
double[] secondPoint
)
Public Overridable Function OnBeginXLine (
shapeId As Integer,
firstPoint As Double(),
secondPoint 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 first of two points to represent the line - secondPoint
- Type: SystemDouble
The second of two points to represent the line
Return Value
Type:
DwgReduction Return DwgReduction.Reduce to request that the shape should be reduced further, DwgReduction.DontReduce
otherwise.
See Also