dlAddPath
dlAddPath(
w_dlist
x_penNumber
x_pathWidth
t_pathEndType
l_pointsList
[ s_tagSymbol ]
)
=> t / nil
Description
Adds a path to the display list.
Arguments
|
w_dlist
|
Display list to add to.
|
|
x_penNumber
|
Pen number to use.
|
|
x_pathWidth
|
Width of the path.
|
|
t_pathEndType
|
End type can have one of three values: Truncate, Extend, or Round. Truncate means the path will be square-ended and stop at the two endpoints. Extend means the path will be square-ended, but it will extend 1/2 the width from each end point. Round means the path will have a rounded endpoint and stop at the two endpoints.
|
|
l_pointsList
|
Coordinates of the center line of the path.
|
|
s_tagSymbol
|
Symbol to tag this object with.
|
Value Returned
|
t
|
Operation successful.
|
|
nil
|
Operation failed.
|
Related Topics
Add Objects to the Display List
Return to top