3ds Max C++ API Reference
NURBS Trim Directions

Defines the side to Keep. More...

Enumerations

enum  NURBSTrimDirection { kNone = 0 , kPositive = 1 , kNegative = 2 }
 

Detailed Description

Defines the side to Keep.

See also
Class NURBSTrimPoint

Enumeration Type Documentation

◆ NURBSTrimDirection

Enumerator
kNone 

Specifies the curve on both sides of the point should be kept – no trimming is done.

kPositive 

Specifies the curve on the positive side of the curve should be kept.

The positive side is the side between the point towards greater values in the curve parameter space.

kNegative 

Specifies the curve on the negative side of the curve should be kept.

The negative side is the side between the point towards lesser values in the curve parameter space.

1396 {
1399  kNone = 0,
1403  kPositive = 1,
1407  kNegative = 2
1408 };
@ kNone
Specifies the curve on both sides of the point should be kept – no trimming is done.
Definition: surf_api.h:1399
@ kPositive
Specifies the curve on the positive side of the curve should be kept.
Definition: surf_api.h:1403
@ kNegative
Specifies the curve on the negative side of the curve should be kept.
Definition: surf_api.h:1407