added new class

This commit is contained in:
2024-11-30 13:54:06 +03:00
parent cfb6683ac3
commit b0ad87f0be
10 changed files with 280 additions and 47 deletions

View File

@@ -10,6 +10,7 @@ namespace omath
{
public:
Triangle3d(const Vector3& vertex1, const Vector3& vertex2, const Vector3& vertex3);
Vector3 m_vertex1;
Vector3 m_vertex2;
Vector3 m_vertex3;
@@ -29,4 +30,4 @@ namespace omath
[[nodiscard]]
Vector3 SideBVector() const;
};
}
}