libDXF 0.0.1
A library with DXF related functions written in C.
|
DXF definition of a single linked list of double variables. More...
#include <global.h>
Data Fields | |
double | value |
struct DxfDouble * | next |
DXF definition of a single linked list of double variables.
double dxf_double_struct::value |
Store the double value (real) here.
Definition at line 235 of file global.h.
Referenced by dxf_double_init(), dxf_helix_write(), dxf_spline_init(), dxf_spline_read(), and dxf_spline_write().
struct DxfDouble* dxf_double_struct::next |
Pointer to the next DxfDouble.
NULL
if the last DxfDouble.
Definition at line 236 of file global.h.
Referenced by dxf_double_free(), dxf_double_free_chain(), dxf_double_init(), and dxf_spline_read().