Реорганизация проекта: перенос определения всех типов в один файл, перегруппировка функций в файлах

This commit is contained in:
Andrey Pokidov 2026-02-12 10:35:03 +07:00
parent c7d9263154
commit 053af33444
45 changed files with 1001 additions and 980 deletions

View file

@ -1,20 +1,11 @@
#ifndef _BGC_COMPLEX_H_INCLUDED_
#define _BGC_COMPLEX_H_INCLUDED_
#include "utilities.h"
#include "angle.h"
#include <math.h>
typedef struct
{
float real, imaginary;
} BGC_FP32_Complex;
typedef struct
{
double real, imaginary;
} BGC_FP64_Complex;
#include "./utilities.h"
#include "./types.h"
#include "./angle.h"
// =================== Reset ==================== //