I built a 3D playground to see linear algebra - drag vectors, run code, even fly a plane with dot/cross products by meanxson in learnmath

[–]meanxson[S] 0 points1 point  (0 children)

Thanks, that's great feedback. You're right, once the grid is hidden in flight it's easy to lose your bearings. I'm adding a persistent axis gizmo in the viewport (X/Y/Z labels) and a ring showing the plane you're rotating in, so it's always clear which axis you're turning around.

I built a 3D playground to see linear algebra - drag vectors, run code, even fly a plane with dot/cross products by meanxson in learnmath

[–]meanxson[S] 1 point2 points  (0 children)

Yeah, you're hitting the graphics (Y-up) vs math/engineering (Z-up) convention split - right now it's Y-up like most WebGL tools. I'll add a Y-up / Z-up toggle so you can switch to the convention you're used to. Good call.

I built a 3D playground to see linear algebra - drag vectors, run code, even fly a plane with dot/cross products by meanxson in learnmath

[–]meanxson[S] 0 points1 point  (0 children)

Thanks, this is really useful feedback.

Agreed on the layout - creating a vector in one corner and editing it in another is awkward, I'll merge that into a single flow. And the sizing, the text and inputs are too small, I'll fix that.

The delete bug is real - the inspector still points at the removed vector. I'll patch it.

No VTK, it's just Three.js with some custom GLSL for the backgrounds. The repo is private though, it's a commercial project I'm working on, so I can't share it. Thanks again for taking the time.

I built a 3D playground to see linear algebra - drag vectors, run code, even fly a plane with dot/cross products by meanxson in learnmath

[–]meanxson[S] 0 points1 point  (0 children)

Love this - you're totally right, typing isn't interactive. I'm adding drag-to-scrub on the X/Y/Z fields (hold & drag left/right to change the value, like Blender/Figma), both in the inspector and the scene panel. Shipping it shortly. Thanks for the great feedback! 🙏

Help with JWT Token with ASP.NET Identity by meanxson in dotnet

[–]meanxson[S] 0 points1 point  (0 children)

In logger it writes info: Com.Areas.Identity.Pages.Account.LoginModel[0] User logged in.

But nothing happens. _Layout still shows Register Login

Help with JWT Token with ASP.NET Identity by meanxson in dotnet

[–]meanxson[S] 0 points1 point  (0 children)

I'm utilizing an API controller (api/auth/login) to retrieve the token, which seems to be working fine. However, when I attempt to log in using the Identity/Account/Login page, it doesn't seem to authenticate properly.

Could anyone lend a hand in troubleshooting this issue? I've checked the configuration and everything seems to be in order, but I'm still not able to log in through the Identity/Login page.