Edge.Crease operator

Introduced

v3.5.1

Description

Returns a Double representing the crease value for this edge. Crease values are between 0 and 10.0 inclusively.

C# Syntax

// get accessor

Double rtn = Edge.Crease;

Examples

VBScript Example

NewScene ,false

CreatePrim "Cube", "MeshSurface"

SetSelFilter "Edge"

SelectGeometryComponents "cube.edge[7,8,LAST]"

ApplyOp "SetEdgeCreaseValueOp", "cube.edge[7,8,LAST]", 3, siPersistentOperation

SetValue "cube.polymsh.SetEdgeCreaseValue.CreaseValue", 4.606

for each  edge in selection(0).CreateSubComponent.ComponentCollection

	logmessage "Edge of index : " & edge.index & " as a crease value of " & edge.crease

next