feat: updated engine

This commit is contained in:
Sara Gerretsen 2026-07-10 17:04:34 +02:00
parent cbe99774ff
commit f4cf6b3999
6607 changed files with 910135 additions and 430025 deletions

View file

@ -145,7 +145,8 @@ void Transform2D::translate_local(const Vector2 &p_translation) {
}
void Transform2D::orthonormalize() {
// Gram-Schmidt Process
// Orthonormalizable check is done in Vector2 class below.
// Gram-Schmidt Process:
Vector2 x = columns[0];
Vector2 y = columns[1];