ladybird/Userland/Applications/3DFileViewer
Shannon Booth e2e7c4d574 Everywhere: Use to_number<T> instead of to_{int,uint,float,double}
In a bunch of cases, this actually ends up simplifying the code as
to_number will handle something such as:

```
Optional<I> opt;
if constexpr (IsSigned<I>)
    opt = view.to_int<I>();
else
    opt = view.to_uint<I>();
```

For us.

The main goal here however is to have a single generic number conversion
API between all of the String classes.
2023-12-23 20:41:07 +01:00
..
CMakeLists.txt 3DFileViewer: Add Manual link to the help-context-menu 2023-11-08 16:26:23 +00:00
Common.h 3DFileViewer: Add vertex normal parsing to WavefrontOBJLoader 2021-11-13 12:52:22 +01:00
main.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Mesh.cpp Everywhere: Run clang-format 2022-04-01 21:24:45 +01:00
Mesh.h 3DFileViewer: Calculate face-normal from vertex-normals of the triangle 2021-11-13 12:52:22 +01:00
MeshLoader.h Everywhere: Remove unused DeprecatedString includes 2023-04-09 22:00:54 +02:00
WavefrontOBJLoader.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
WavefrontOBJLoader.h 3DFileViewer: Port MeshLoader and its child to the new Core::File 2023-02-16 10:56:01 +00:00