Comment cleanup v3: trailing ??, informal language, FIXME/TODO colons

libeigen/eigen!2197

Co-authored-by: Rasmus Munk Larsen <rmlarsen@gmail.com>
This commit is contained in:
Rasmus Munk Larsen
2026-02-22 21:20:08 -08:00
parent 112c2324bd
commit 78b76986b7
57 changed files with 90 additions and 89 deletions

View File

@@ -213,7 +213,7 @@ Vector3f Camera::unProject(const Vector2f& uv, float depth, const Matrix4f& invM
a.x() *= depth / mProjectionMatrix(0, 0);
a.y() *= depth / mProjectionMatrix(1, 1);
a.z() = -depth;
// FIXME /\/|
// FIXME: verify this transformation.
Vector4f b = invModelview * Vector4f(a.x(), a.y(), a.z(), 1.);
return Vector3f(b.x(), b.y(), b.z());
}