This commit is contained in:
2026-02-24 15:58:17 +01:00
parent d6d7ed02bb
commit 497e218eb9
10 changed files with 105 additions and 57 deletions
+2
View File
@@ -36,6 +36,7 @@ class DeltaVector3 {
float dotProduct(const DeltaVector3 &vec) const;
float angleTo(const DeltaVector3 &vec) const;
float length() const;
DeltaVector3 crossProduct(const DeltaVector3 &vec) const;
};
@@ -59,6 +60,7 @@ struct DeltaModelConnector {
struct DeltaRenderTriangle {
DeltaVertex a, b, c;
std::string texID;
DeltaVector3 normal;
};
struct DeltaModel {