GENERATE/PREV.gifGENERATE/NEXT.gif

2D and 3D Points

Coordinates are used extensively in MAXScript programming. They support a large range of operations as described in the Point2 : Value and Point3 : Value topics. You can write point literals using the following forms:

2D

[ <expr>, <expr> ]

3D

[ <expr>, <expr>, <expr> ]

Examples:

[320, 240]

[10, 20, 30]

[x, y, z]

[sin a, 2 * foo, a^2 + b^2]