Span: Difference between revisions
No edit summary |
No edit summary |
||
Line 107: | Line 107: | ||
Methods | ==Methods== | ||
:ChordLength() | ===:ChordLength()=== | ||
Return the straight-line distance between start and end points of the span | Return the straight-line distance between start and end points of the span | ||
Line 117: | Line 117: | ||
:EndVector( bool normalise) | ===:EndVector( bool normalise)=== | ||
Return a Vector2D representing the direction of the span at the end. | Return a Vector2D representing the direction of the span at the end. | ||
Line 125: | Line 125: | ||
:GetControlPointPosition( integer index) | ===:GetControlPointPosition( integer index)=== | ||
Return a Point2D with position of requested control point (use .NumberOfControlPoints to get count). This call is only valid on a Bezier or an Arc. For a Bezier 0 returns first control point, 1 returns the second. For an arc, 0 returns arc mid point. | Return a Point2D with position of requested control point (use .NumberOfControlPoints to get count). This call is only valid on a Bezier or an Arc. For a Bezier 0 returns first control point, 1 returns the second. For an arc, 0 returns arc mid point. | ||
Line 135: | Line 135: | ||
:GetLength( double tolerance) | ===:GetLength( double tolerance)=== | ||
Return a double holding the length of the span. The passed tolerance is used for beziers to approximate length to given tolerance. | Return a double holding the length of the span. The passed tolerance is used for beziers to approximate length to given tolerance. | ||
Line 145: | Line 145: | ||
:MoveControlPoint( integer index, Point2D pt) | ===:MoveControlPoint( integer index, Point2D pt) === | ||
This is only valid for an arc or Bezier and attempts to move the specified control point to the passed position. This call is only valid on a Bezier or an Arc. For a Bezier, index 0 modifies first control point, 1 modifies the second. For an arc, 0 modifies the arc mid point. If the control point can’t be moved to the passed position (e.g would make an invalid arc) returns false, else true. | This is only valid for an arc or Bezier and attempts to move the specified control point to the passed position. This call is only valid on a Bezier or an Arc. For a Bezier, index 0 modifies first control point, 1 modifies the second. For an arc, 0 modifies the arc mid point. If the control point can’t be moved to the passed position (e.g would make an invalid arc) returns false, else true. | ||
Line 155: | Line 155: | ||
:PointAtParameter( double param, double tolerance) | ===:PointAtParameter( double param, double tolerance) === | ||
Return a Point2D representing the point on the span at passed parameter in range 0 - 1.0. Passed tolerance is used for polygonisation for Bezier spans. | Return a Point2D representing the point on the span at passed parameter in range 0 - 1.0. Passed tolerance is used for polygonisation for Bezier spans. | ||
Line 167: | Line 167: | ||
:StartVector( bool normalise) | ===:StartVector( bool normalise)=== | ||
Return a Vector2D representing the direction of the span at the start. | Return a Vector2D representing the direction of the span at the start. | ||
Line 177: | Line 177: | ||
:SetStartPoint3D( Point3D pt) | ===:SetStartPoint3D( Point3D pt)=== | ||
Set start point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. | Set start point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. | ||
Line 187: | Line 187: | ||
:SetStartPoint2D( Point2D pt) | ===:SetStartPoint2D( Point2D pt)=== | ||
Set start point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. | Set start point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. | ||
Line 197: | Line 197: | ||
:SetEndPoint3D( Point3D pt) | ===:SetEndPoint3D( Point3D pt)=== | ||
Set end point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. | Set end point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. | ||
Line 207: | Line 207: | ||
:SetEndPoint2D( Point2D pt) | ===:SetEndPoint2D( Point2D pt)=== | ||
Set end point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. | Set end point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour. |
Revision as of 11:53, 30 August 2024
This object is the base class for spans in a Contour. Spans are either lines, arcs or beziers or a single
‘point’
Constructors
Span( Point3D pt3d)
A new span representing a single point is created within a Lua script using this contructor method
pt3d - Point3D - 3d position for a point
e.g
local pt = Point3D(0, 0, 0)
local pt_span = Span(pt)
NOTE: most spans are created as either a LineSpan, ArcSpan or BezierSpan.
Properties
.EndPoint3D
R/O - Point3D - The 3D end point of the span
.EndPoint2D
R/O - Point3D - The 2D end point of the span
.IsLineType
R/O - bool - true if span is a line
.IsArcType
R/O - bool - true if span is an arc
.IsBezierType
R/O - bool - true if span is a bezier
.IsLeadInType
R/O - bool - true if span is a lead in
.IsLeadOutType
R/O - bool - true if span is a lead out
.IsOvercutType
R/O - bool - true if span is part of an overcut
.NumberOfControlPoints
R/O - integer - number of control points for span (2 for Bezier, 1 for an arc (the mid point), 0 for a line
.StartPoint3D
R/O - Point3D - The 3D start point of the span
.StartPoint2D
R/O - Point2D - The 2D start point of the span
.Type
R/O - integer - enum identifying type of the span
Usual values are Span.NormalLine, Span.Arc and Span.Bezier
Methods
:ChordLength()
Return the straight-line distance between start and end points of the span
:EndVector( bool normalise)
Return a Vector2D representing the direction of the span at the end.
normalise - bool - if true, the returned vector is normalised
:GetControlPointPosition( integer index)
Return a Point2D with position of requested control point (use .NumberOfControlPoints to get count). This call is only valid on a Bezier or an Arc. For a Bezier 0 returns first control point, 1 returns the second. For an arc, 0 returns arc mid point.
index - integer - index of control point
:GetLength( double tolerance)
Return a double holding the length of the span. The passed tolerance is used for beziers to approximate length to given tolerance.
tolerance - double - tolerance to use when polygonizing beziers to find length
:MoveControlPoint( integer index, Point2D pt)
This is only valid for an arc or Bezier and attempts to move the specified control point to the passed position. This call is only valid on a Bezier or an Arc. For a Bezier, index 0 modifies first control point, 1 modifies the second. For an arc, 0 modifies the arc mid point. If the control point can’t be moved to the passed position (e.g would make an invalid arc) returns false, else true.
index - integer - index of control point pt - Point2D - position for control point
:PointAtParameter( double param, double tolerance)
Return a Point2D representing the point on the span at passed parameter in range 0 - 1.0. Passed tolerance is used for polygonisation for Bezier spans.
parameter - double - parameter in range 0 - 1.0 to find point on span at tolerance - double - tolerance to use when polygonizing beziers :Reverse()
Reverse the span - swap start and end points and for arcs swap sign of bulge, for beziers swap control points.
:StartVector( bool normalise)
Return a Vector2D representing the direction of the span at the start.
normalise - bool - if true, the returned vector is normalized
:SetStartPoint3D( Point3D pt)
Set start point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour.
pt - Point3D - 3D position for point
:SetStartPoint2D( Point2D pt)
Set start point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour.
pt - Point2D - 2D position for point
:SetEndPoint3D( Point3D pt)
Set end point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour.
pt - Point3D - 3D position for point
:SetEndPoint2D( Point2D pt)
Set end point for span - be EXTREMELY careful if you call this method on spans in a contour as gaps will open between adjoining spans leading to an invalid contour.
pt - Point2D - 2D position for point
References
Please Note: The base material for the contents found in this WiKi was sourced from Vectric Lua Interface for Gadgets, version 2.05, published September 12, 2018. by Vectric Ltd. Most current document from Vertric can be downloaded at Vertric Developer Information