Упорядочивание проекта

This commit is contained in:
Andrey Pokidov 2025-11-26 22:43:29 +07:00
parent 0dcd9c0d4d
commit 89dfd7644b
32 changed files with 1730 additions and 1719 deletions

16
basic-geometry/types.h Normal file
View 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