git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@543 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-01 04:25:22 +00:00
parent 0626cb3527
commit 98143415ba
12 changed files with 467 additions and 64 deletions

View File

@@ -5,6 +5,8 @@
#include <Mw/LowLevelMath.h>
#include "nbsd_math.h"
struct _MwLLMathVTable {
void (*Add)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
void (*Multiply)(MwLLVec* a, MwLLVec* b, MwLLVec* out);
@@ -24,5 +26,6 @@ typedef struct _MwLLMathVTable MwLLMathVTable;
MwLLMathVTable** default_multi_table(void);
void mmx_apply(MwLLMathVTable**);
double nbsd_pow(double a, double b);
#endif