Garry's Mod Wiki

Vector:Div

  Vector:Div( number divisor )

Description

Divide the vector by the given number, that means x, y and z are divided by that value. This will change the value of the original vector, see example 2 for division without changing the value.

Arguments

1 number divisor
The value to divide the vector with.

Example

Divides a vector by 255.

a = Vector(255, 130, 0) a:Div(255) print(a)
Output:
1 0.509804 0

Example

If you don't want to set your vector to the result, and just return a new vector as the result. You can use a ' / ' operator to divide a vector with a divisor.

a = Vector(255, 255, 255) print(a/255)
Output:
1 1 1