3D Lingo Dictionary > L-N > lineColor |
![]() ![]() ![]() |
lineColor
Syntax
member(
whichCastmember
)
.model(
whichModel
)
.inker.lineColor member(
whichCastmember
)
.model(
whichModel
)
.toon.lineColor
Description
3D toon
and inker
modifier property; indicates the color of the lines drawn on the model by the modifier. For this property to have an effect, the modifier's creases
, silhouettes
, or boundary
property must be set to TRUE
.
The default value for this property is rgb(0, 0, 0)
.
Example
This statement sets the color of all lines drawn by the toon
modifier on the model named Teapot to rgb(255, 0, 0)
, which is red.
member("shapes").model("Teapot").toon.lineColor = rgb(255, 0, 0)
See also
creases
, silhouettes
, boundary
, lineOffset
![]() ![]() ![]() |