Implement Matrix3x3 FromScale and ScaleBy

This commit is contained in:
2024-02-01 21:02:18 -05:00
parent 792f7801bb
commit d37b685df9
3 changed files with 53 additions and 18 deletions

View File

@@ -118,6 +118,11 @@ namespace LinearAlgebra {
Vector3 GetRow3(int index) const;
Vector3 GetColumn3(int index) const;
Vector3 GetScale() const
{
}
float &At(int row, int col);
float At(int x, int y) const;