Package glitter :: Package utils :: Module dtypes :: Class Datatype
[hide private]
[frames] | no frames]

Class Datatype

source code

object --+
         |
        Datatype

Instance Methods [hide private]
 
__init__(self, integer, signed, nptype, _gltype=None, charcode=None)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
as_numpy(self) source code
 
_as_gl(self) source code
 
as_signed(self) source code
 
as_unsigned(self) source code
 
as_nbytes(self, nbytes) source code
 
is_signed(self) source code
 
is_unsigned(self) source code
 
is_integer(self) source code
 
is_float(self) source code
 
is_boolean(self) source code
 
__str__(self)
str(x)
source code
 
__repr__(self)
repr(x)
source code
 
coerced(self, force_integer=False, force_unsigned=False, force_float=False, force_gl=True)
Find a datatype with the specified properties.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __subclasshook__

Class Methods [hide private]
 
from_numpy(cls, nptype) source code
 
_from_gl(cls, _gltype) source code
Class Variables [hide private]
  _nptype_db = {<type 'numpy.bool_'>: int8, <type 'numpy.int8'>:...
  _gltype_db = {None: float64, GL_BYTE(5120): int8, GL_UNSIGNED_...
  _db = {(False, True, 4): float32, (False, True, 8): float64, (...
Properties [hide private]
  charcode
  nbytes

Inherited from object: __class__

Method Details [hide private]

__init__(self, integer, signed, nptype, _gltype=None, charcode=None)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)

__repr__(self)
(Representation operator)

source code 

repr(x)

Overrides: object.__repr__
(inherited documentation)

coerced(self, force_integer=False, force_unsigned=False, force_float=False, force_gl=True)

source code 

Find a datatype with the specified properties.

The returned datatype will match `self` as closely as possible. If `force_integer` is `True`, it will be an integer datatype. If `force_unsigned` is `True`, it will be an unsigned datatype. If `force_float` is `True`, it will be a floating point datatype. If `force_gl` is `True`, it will have an OpenGL equivalent.

If conversion of `self` to the resulting datatype would likely result in a severe loss of precision or overflows, an error may be raised.


Class Variable Details [hide private]

_nptype_db

Value:
{<type 'numpy.bool_'>: int8,
 <type 'numpy.int8'>: int8,
 <type 'numpy.int16'>: int16,
 <type 'numpy.int32'>: int32,
 <type 'numpy.int64'>: int64,
 <type 'numpy.uint8'>: uint8,
 <type 'numpy.uint16'>: uint16,
 <type 'numpy.uint32'>: uint32,
...

_gltype_db

Value:
{None: float64,
 GL_BYTE(5120): int8,
 GL_UNSIGNED_BYTE(5121): uint8,
 GL_SHORT(5122): int16,
 GL_UNSIGNED_SHORT(5123): uint16,
 GL_INT(5124): <glitter.utils.shaderdtypes.ShaderDatatype object at 0x\
1bba150>,
 GL_UNSIGNED_INT(5125): <glitter.utils.shaderdtypes.ShaderDatatype obj\
...

_db

Value:
{(False, True, 4): float32,
 (False, True, 8): float64,
 (True, False, 1): uint8,
 (True, False, 2): uint16,
 (True, False, 4): uint32,
 (True, False, 8): uint64,
 (True, True, 1): int8,
 (True, True, 2): int16,
...

Property Details [hide private]

charcode

Get Method:
unreachable.charcode(self)

nbytes

Get Method:
unreachable.nbytes(self)