Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Helper to create a cubiod from dimensions | Dan Goodliffe | 2024-01-06 | |
| | ||||
* | Template GeometicPlane on Position type | Dan Goodliffe | 2024-01-05 | |
| | ||||
* | Inline functions of GeometricPlane | Dan Goodliffe | 2024-01-05 | |
| | ||||
* | Remove more use of legacy types | Dan Goodliffe | 2024-01-01 | |
| | ||||
* | Templatise functions in maths.h using PositionND | Dan Goodliffe | 2023-12-29 | |
| | ||||
* | Remove misleading power operator^ on vec2/3 | Dan Goodliffe | 2023-12-29 | |
| | ||||
* | Remove weird operator! on vec2/3 | Dan Goodliffe | 2023-12-29 | |
| | ||||
* | Add crossInt - cross product for integer vectors | Dan Goodliffe | 2023-12-02 | |
| | ||||
* | Model positions as integers | Dan Goodliffe | 2023-11-25 | |
| | | | | | Introduces test failure in arcs due to rounding, but I don't want to create a complicated fix as link positions are still floats and hopefully that'll go away... somehow | |||
* | Remove getTransform | Dan Goodliffe | 2023-11-25 | |
| | ||||
* | Add Location method for getting the rotation only transform | Dan Goodliffe | 2023-11-11 | |
| | ||||
* | WIP typedefing all the things - sources | Dan Goodliffe | 2023-11-09 | |
| | ||||
* | WIP typedefing all the things - headers | Dan Goodliffe | 2023-11-07 | |
| | ||||
* | Reformat with new clang-format | Dan Goodliffe | 2023-11-07 | |
| | ||||
* | Swap GLEW for more modern glad | Dan Goodliffe | 2023-05-28 | |
| | ||||
* | Refactor InstanceVertices in terms of glContainer | Dan Goodliffe | 2023-05-01 | |
| | ||||
* | Don't explictly call destructor of contained element | Dan Goodliffe | 2023-05-01 | |
| | ||||
* | Add the pack container | Dan Goodliffe | 2023-05-01 | |
| | | | | Keeps its elements densely packed together without any interest in order | |||
* | Add method to get GL buffer name of glContainer | Dan Goodliffe | 2023-05-01 | |
| | ||||
* | glContainer should at least double in capacity as required | Dan Goodliffe | 2023-05-01 | |
| | ||||
* | Extend glContainer with most of the interface expected of an STL container | Dan Goodliffe | 2023-05-01 | |
| | ||||
* | Initial commit of glContainer | Dan Goodliffe | 2023-04-30 | |
| | | | | A std::vector like container backed by an OpenGL buffer. | |||
* | Rename strings.h to something that won't conflict with a system header | Dan Goodliffe | 2023-04-30 | |
| | ||||
* | Reformat with new clang-format 16 | Dan Goodliffe | 2023-04-29 | |
| | ||||
* | Drop .hpp for header only things | Dan Goodliffe | 2023-04-29 | |
| | | | | Half of them acquired a .cpp part anyway | |||
* | Add getTransform to Location; wraps the standard mat4 calculations | Dan Goodliffe | 2023-04-23 | |
| | ||||
* | Fixup vertexAttribFunc for matrices | Dan Goodliffe | 2023-04-19 | |
| | ||||
* | Specialize vertexAttribFunc for matrices because there's an upper limit of ↵ | Dan Goodliffe | 2023-04-18 | |
| | | | | size 4 on attrib pointers | |||
* | Current thread partakes in work effort while waiting | Dan Goodliffe | 2023-04-14 | |
| | | | | This will prevent deadlock if the work pool is otherwise busy by ensuring work is always being done | |||
* | Simplify doWork, add tests for various interface uses | Dan Goodliffe | 2023-04-14 | |
| | ||||
* | New WorkItem/job/promise/future based interface | Dan Goodliffe | 2023-04-14 | |
| | ||||
* | Simplify worker with jthread | Dan Goodliffe | 2023-04-14 | |
| | | | | | Moves thread collection to bottom of class so threads are joined before job storage is destroyed. | |||
* | Global worker instance | Dan Goodliffe | 2023-04-14 | |
| | ||||
* | Fix submitting of integer values via vertex arrays | Dan Goodliffe | 2023-04-13 | |
| | ||||
* | Add operator* helper specialised for std::span | Dan Goodliffe | 2023-04-10 | |
| | ||||
* | operator* collection helper reserves target space when possible | Dan Goodliffe | 2023-04-10 | |
| | ||||
* | Constraint operator* collection helper to IterableCollections | Dan Goodliffe | 2023-04-10 | |
| | ||||
* | Add lots of split required stuff to geometric plane | Dan Goodliffe | 2023-04-09 | |
| | ||||
* | Add helper to create a Ray from two points | Dan Goodliffe | 2023-04-09 | |
| | ||||
* | Start to factor out geometric place from face controller split | Dan Goodliffe | 2023-04-09 | |
| | ||||
* | Add helper for iterating over a range defined by a pair of iterators | Dan Goodliffe | 2023-04-07 | |
| | ||||
* | Add persistence support for std::optional<>s | Dan Goodliffe | 2023-03-20 | |
| | ||||
* | Lazy initialisation of SelectionPtr in persistValue | Dan Goodliffe | 2023-03-20 | |
| | | | | Always needed for write phase, but only need on read if their's a name match. | |||
* | Allow overriding vectorOfN's returned type | Dan Goodliffe | 2023-03-17 | |
| | ||||
* | Add postLoad support to persistence | Dan Goodliffe | 2023-03-14 | |
| | ||||
* | CLOG includes line number | Dan Goodliffe | 2023-03-11 | |
| | ||||
* | Inplace operator%= for vec3/mat4 mutation | Dan Goodliffe | 2023-03-10 | |
| | ||||
* | Replace SelectionT for glm::vec with one for std::span, reimplement it as a ↵ | Dan Goodliffe | 2023-03-05 | |
| | | | | | | wrapper All the implementation is now shared, regardless of length and qualifier. | |||
* | Don't leak root node when parsing XML | Dan Goodliffe | 2023-03-02 | |
| | ||||
* | Add ParseBase | Dan Goodliffe | 2023-03-02 | |
| | | | | Acts as a base class for persistence parser, encompasses the parse stack and manages shared objects |