Index
Vectors

V3

V3(2 3 4) ->vector

Description

Pops three items from the stack, treats them as float, and creates a new Vector and pushes it to the stack. The three values popped from the stack occupy the x, y, and z positions in the new vector. The w position will be zero.

Examples

V3(2 3 4) ->vector
trace(<-vector)

Index