Package gameobjects :: Module matrix44 :: Class Row
[hide private]
[frames] | no frames]

Class Row

source code


Represents the contents of a row when accessed through a property.

Instance Methods [hide private]
 
__add__(self, rhs)
x+y
source code
 
__sub__(self, rhs) source code
 
__mul__(self, rhs)
x*n
source code
 
__div__(self, rhs) source code
 
as_vec3(self)
Shorthand for converting to a vector3.
source code

Inherited from tuple: __contains__, __eq__, __ge__, __getattribute__, __getitem__, __getnewargs__, __getslice__, __gt__, __hash__, __iter__, __le__, __len__, __lt__, __ne__, __new__, __repr__, __rmul__

Inherited from object: __delattr__, __init__, __reduce__, __reduce_ex__, __setattr__, __str__

Class Variables [hide private]
  _type_error = 'A vector type must be used to do math on rows'
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__add__(self, rhs)
(Addition operator)

source code 
x+y
Overrides: tuple.__add__
(inherited documentation)

__mul__(self, rhs)

source code 
x*n
Overrides: tuple.__mul__
(inherited documentation)