Kristian Duske
Kristian Duske
The mac build should be codesigned to stop macOS from blocking its execution, and to prevent the permission prompts being shown after every update. Furthermore it should also be enabled...
We might be able to replace `IO::Path` and the raw FS access functions in `IO::Disk` and get rid of some (very platform specific) code and tests. Missing functionality can be...
**Open Questions** - How do we handle a mix of brush primitives and legacy brushes? Convert all to primitives on load, or allow a mix of both in the editor,...
It may be necessary to rework entity rotations a little bit. - `mangle` should not affect rendering, show have an indicator arrow - `angle` / `angles` should affect rendering, should...
It is currently not possible to rotate or scale individual vertices. The corresponding tools only work on objects. Of course we don't want to replicate their functionality in the vertex...
TB uses a variety of methods to convert strings to numbers. We should use the C++11 `st*` (e.g. `stoul`) functions from the `` header instead, see https://en.cppreference.com/w/cpp/string/basic_string
Closes #4089
I have decided to change the `.clang-format` rules quite a bit to be mostly identical to what I use at work. It just makes my life quite a bit easier....
Reported by @hemebond on discord. The brush is ``` { ( -0 -80 -0 ) ( -1 -80 0 ) ( 0 -80 1 ) skip [ 1 0 0...
`MapDocument` has become very large and takes a long time to compile due to all the lambdas being used. We should consider simplifying it or extracting classes that take up...