vector2d
Variables
Name
Type
x
float
y
float
Functions
IsZero
Returns:
Type
Description
bool
true if all vector axes equals zero
Code:
local vecZero = Vector2D.new(0.0, 0.0)
local bIsZero = vecZero.IsZero()
Last updated
Was this helpful?