dbSetBeginPatch
dbSetBeginPatch(
d_pathSegId
g_value
)
=> t / nil
Description
Adds or removes the beginStyle patch type for the specified path segment depending on the argument g_value.
Arguments
|
Value of the patch type. |
Value Returned
|
The patch type for the path segment is successfully set to |
|
Examples
ps = dbCreatePathSeg(cv "metal1" list(-1 0) list(0 1) .05 "truncate" "truncate") db:0x1f7b9c1a
dbSetBeginPatch(ps t) => t
dbGetPatchType(ps) => beginStyle
dbSetEndPatch(ps t) => t
dbGetPatchType(ps) => bothStyle
dbSetBeginPatch(ps nil) => t
dbGetPatchType(ps) => endStyle
Related Topics
Return to top