Добавление новых функций, возвращение функций subtract_scaled

This commit is contained in:
Andrey Pokidov 2026-02-15 23:41:01 +07:00
parent 727961ad98
commit 1075624d05
26 changed files with 836 additions and 292 deletions

View file

@ -181,15 +181,15 @@ typedef struct {
BGC_FP64_Vector3 shift;
} BGC_FP64_Position3;
// ================ Dual Scalar ================= //
// ================ Dual Number ================= //
typedef struct {
float real_part, dual_part;
} BGC_FP32_DualScalar;
} BGC_FP32_DualNumber;
typedef struct {
double real_part, dual_part;
} BGC_FP64_DualScalar;
} BGC_FP64_DualNumber;
// ================ Dual Vector ================= //