Vector
Example
Creates a vector and prints the value to the console.
print( Vector( 1, 2, 3 ) )
print( Vector( "4 5 6" ) )
local test = Vector( 7, 8, 9 )
print( Vector( test ) )
print( Vector( "4 5 test" ) )
print( Vector() )
Output:
1.000000 2.000000 3.000000
4.000000 5.000000 6.000000
7.000000 8.000000 9.000000
0.000000 0.000000 0.000000
0.000000 0.000000 0.000000