![]() |
GIRAFFE Pipeline Reference Manual |
|||
|
|
A Range Data Type
Detailed DescriptionTBD Function Documentation◆ giraffe_range_create()
Creates a new range from the given minimum and maximum values.
The function creates a new range object. The minimum and maximum values of the created range are initialized with the given minimum value min and the maximum value max. Definition at line 83 of file girange.c. Referenced by giraffe_sgcalibration_config_create(). ◆ giraffe_range_delete()
Destroys a range object.
The function deallocates the memory used by the range object self. Definition at line 118 of file girange.c. Referenced by giraffe_fov_build(), giraffe_sgcalibration_config_destroy(), and giraffe_wlcalibration_config_destroy(). ◆ giraffe_range_get_max()
Get the maximum of a range.
The function queries the maximum value of the given range self. Definition at line 213 of file girange.c. Referenced by giraffe_fov_build(). ◆ giraffe_range_get_min()
Get the minimum of a range.
The function queries the minimum value of the given range self. Definition at line 167 of file girange.c. Referenced by giraffe_fov_build(). ◆ giraffe_range_new()
◆ giraffe_range_set_max()
Set the maximum of a range.
The function updates the maximum value of the given range self with max. Definition at line 190 of file girange.c. Referenced by giraffe_fov_build(). ◆ giraffe_range_set_min()
Set the minimum of a range.
The function updates the minimum value of the given range self with min. Definition at line 144 of file girange.c. Referenced by giraffe_fov_build(). |