1
0
forked from josh/j3ml

Implement Transform methods

This commit is contained in:
2023-12-29 12:38:50 -05:00
parent 17718fa409
commit c3053ceb3a
2 changed files with 17 additions and 4 deletions

View File

@@ -100,10 +100,8 @@ namespace LinearAlgebra {
// Transforms the given vectors by this matrix M, i.e. returns M * (x,y,z)
Vector2 Transform(const Vector2& vector) const;
Vector2 Transform(const Vector2& rhs) const;
Vector3 Transform(const Vector3& rhs) const;
Vector2 Transform(float x, float y) const;
Vector3 Transform(float x, float y, float z) const;