Добавление арифметических операций для дуальных кватернионов

This commit is contained in:
Andrey Pokidov 2026-02-05 01:47:52 +07:00
parent b470a3194b
commit b0b064de5a
24 changed files with 171 additions and 102 deletions

View file

@ -1,16 +0,0 @@
#ifndef _BGC_TYPES_H_
#define _BGC_TYPES_H_
// ================== Complex =================== //
typedef struct
{
float real, imaginary;
} BgcComplexFP32;
typedef struct
{
double real, imaginary;
} BgcComplexFP64;
#endif