dbSetFullPatch
dbSetFullPatch(
d_pathSegId
g_value
)
=> t / nil
Description
Adds or removes the full style patch type for the specified path segment depending on the argument g_value. Path segment needs to have at least one property among beginStyle or endStyle or both to set the full style patch type.
Arguments
|
Value of the patch type. |
Value Returned
|
The patch type for the path segment was successfully set to full style. |
|
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
dbSetFullPatch(ps t) => t
dbGetPatchType(ps) => bothFull
Related Topics
Return to top