![]() |
Ansel 0.0
A darktable fork - bloat + design vision
|
Data Fields | |
unsigned int | size |
unsigned int | max_size |
unsigned int | dim |
double * | values |
'list of n-tuple' data type
The i-th component of the j-th n-tuple of an n-tuple list 'ntl' is accessed with:
ntl->values[ i + j * ntl->dim ]
The dimension of the n-tuple (n) is:
ntl->dim
The number of n-tuples in the list is:
ntl->size
The maximum number of n-tuples that can be stored in the list with the allocated memory at a given time is given by:
ntl->max_size
unsigned int ntuple_list_s::dim |
Referenced by add_7tuple(), enlarge_ntuple_list(), and new_ntuple_list().
unsigned int ntuple_list_s::max_size |
Referenced by add_7tuple(), enlarge_ntuple_list(), and new_ntuple_list().
unsigned int ntuple_list_s::size |
Referenced by add_7tuple(), and new_ntuple_list().
double* ntuple_list_s::values |
Referenced by add_7tuple(), enlarge_ntuple_list(), free_ntuple_list(), and new_ntuple_list().