Difference between revisions of "PRIM SLICE"
Jump to navigation
Jump to search
m |
m |
||
Line 33: | Line 33: | ||
|events | |events | ||
|location | |location | ||
|cat1= | |cat1=PrimitiveParams | ||
|cat2=PrimitiveParams | |cat2=PrimitiveParams/Prim | ||
|cat3 | |cat3 | ||
|cat4 | |cat4 | ||
}} | }} |
Revision as of 20:54, 1 July 2012
LSL Portal | Functions | Events | Types | Operators | Constants | Flow Control | Script Library | Categorized Library | Tutorials |
Description
Constant: integer PRIM_SLICE = 35;The integer constant PRIM_SLICE has the value 35
Used to get or set the prim's slice values (a shape attribute, equivalent to advanced_cut).
llSetPrimitiveParams
llSetPrimitiveParams([ PRIM_SLICE, vector slice ]);• vector | slice | – | x and y range from 0.0 to 1.0, x must be at least 0.05 smaller than y (z is ignored) |
The same syntax applies to llSetLinkPrimitiveParams and llSetLinkPrimitiveParamsFast but with an additional prefixed link parameter in the function call.
llGetPrimitiveParams
llGetPrimitiveParams([ PRIM_SLICE ]);Returns the list [ vector slice ]
• vector | slice | – | x and y range from 0.0 to 1.0, x must be at least 0.05 smaller than y (z is ignored) |
The same syntax applies to llGetLinkPrimitiveParams, but with an additional prefixed link parameter in the function call.
Caveats