Struct int3

Struct Documentation

struct int3

The int3 struct is just a simple coupling of three integers as x, y, and z.

Public Functions

inline int3()

Default constructor: (0, 0, 0).

inline int3(int _x, int _y, int _z)

Explicit constructor: (_x, _y, _z).

Public Members

int x

The first coordinate.

int y

The second coordinate.

int z

The third coordinate.