Operands

Operands, denoted as <operand> in the syntax definitions, are the references to values that surround operators or are passed as parameters to a function. Prime examples are Literal Constants and variable names. Operands are divided into two groups, Factors and Accessors.

Factors

Factors, denoted as <factor> in the syntax definitions, are references to values, where the entire value is acted on. A factor can be a Literal Constants, a Reserved Global Variable, a variable name, or an expression.

The unary minus applies the math negate operator to its operand.

-<operand> -- unary minus

The unary minus is only applicable to factors that evaluate to a number.

EXAMPLES:

-0.75
sin (-a*pi)

Accessors

Accessors are constructs that let you access the components in compound values, such as arrays and 3D points. There are two kinds of accessors corresponding to the two kinds of compound values in MAXScript:

All 3ds Max objects, such as boxes, spheres, bend modifiers, or bitmap textures are treated as compound values in this sense. All of their parameters, such as height and angle, or map file name, are accessed as named components. In MAXScript, these named components are referred to as properties.

Accessors have one of two forms, an <array_index> :

<operand> [ <expr> ] -- an indexed element

or a <property>:

<operand>.<var_name> -- a named property

EXAMPLES:

maps[i]
selection[n+1]
position.x
bend.angle