Упорядочивание проекта
This commit is contained in:
parent
0dcd9c0d4d
commit
89dfd7644b
32 changed files with 1730 additions and 1719 deletions
16
basic-geometry/types.h
Normal file
16
basic-geometry/types.h
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#ifndef _BGC_TYPES_H_
|
||||
#define _BGC_TYPES_H_
|
||||
|
||||
// ================== Complex =================== //
|
||||
|
||||
typedef struct
|
||||
{
|
||||
float real, imaginary;
|
||||
} BgcComplexFP32;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
double real, imaginary;
|
||||
} BgcComplexFP64;
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue