Implement Mat4x4 Translate, Transform, FromTranslation

This commit is contained in:
2024-01-31 18:34:15 -05:00
parent 132b8a0a66
commit 40e69d5c4f
11 changed files with 202 additions and 49 deletions

View File

@@ -7,6 +7,9 @@ namespace Geometry
using LinearAlgebra::Vector3;
class LineSegment
{
public:
LineSegment();
LineSegment(const Vector3& a, const Vector3& b);
Vector3 A;
Vector3 B;
};