Int3

class pyogmaneo.Int3

Simple 3-component integer vector type use typically to define sizes of various elements.

(int32) Int3.x

First (x) component

(int32) Int3.y

Second (y) component

(int32) Int3.z

Third (z) component

Int3.__init__(self)

Default initialize to x=0, y=0, z=0

Int3.__init__(self, X, Y, Z)

Initialize from components

Parameters:
  • X – (int32) x to initialize to
  • Y – (int32) y to initialize to
  • Z – (int32) z to initialize to