bgc-c/basic-geometry/types.h

16 lines
233 B
C

#ifndef _BGC_TYPES_H_
#define _BGC_TYPES_H_
// ================== Complex =================== //
typedef struct
{
float real, imaginary;
} BgcComplexFP32;
typedef struct
{
double real, imaginary;
} BgcComplexFP64;
#endif