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

Module dtypes

source code

Datatypes and helper functions.


Author: Stephan Wenger

Date: 2012-02-29

Classes [hide private]
  Datatype
Functions [hide private]
 
coerce_array(data, dtype=None, force_integer=False, force_unsigned=False, force_float=False, force_gl=True)
Convert `data` to a contiguous array with the specified properties.
source code
Variables [hide private]
  bool8 = int8
  uint8 = uint8
  uint16 = uint16
  uint32 = uint32
  uint64 = uint64
  int8 = int8
  int16 = int16
  int32 = int32
  int64 = int64
  float32 = float32
  float64 = float64
  __package__ = 'glitter.utils'
Function Details [hide private]

coerce_array(data, dtype=None, force_integer=False, force_unsigned=False, force_float=False, force_gl=True)

source code 

Convert `data` to a contiguous array with the specified properties.

The datatype of the array will match `dtype` 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 to the resulting datatype would likely result in a severe loss of precision or overflows, an error may be raised.