math module

Math module.

Contains all math classes.

class mrv2.math.Vector2i

Vector of 2 integers.

x = int
y = int
class mrv2.math.Vector2f

Vector of 2 floats.

x = float
y = float
class mrv2.math.Vector3f

Vector of 3 floats.

x = float
y = float
z = float
class mrv2.math.Vector4f

Vector of 4 floats.

x = float
y = float
z = float
w = float
class mrv2.math.Size2i

Size of 2 integers.

w = int
h = int