summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAge
* Add ParseBaseDan Goodliffe2023-03-02
| | | | Acts as a base class for persistence parser, encompasses the parse stack and manages shared objects
* Remove to specify if the Selection pointer type is shared or notDan Goodliffe2023-02-28
| | | | Inferred based on whether the pointer is copyable or not.
* operator*= can work on any iterable collectionDan Goodliffe2023-02-27
|
* Add nodiscard to many collections helpersDan Goodliffe2023-02-27
|
* Helpers to create container instances from rangesDan Goodliffe2023-02-25
|
* Fixed up vector operator+ elementDan Goodliffe2023-02-24
|
* Support parsing string values in persistence readDan Goodliffe2023-02-23
|
* Fixup MapByMember to work with shared or unique ptrDan Goodliffe2023-02-22
|
* Move Appender in Persistence NS and simplify typesDan Goodliffe2023-02-21
|
* Implement XML deserializer with SAXParseDan Goodliffe2023-02-21
|
* Add checked_fopen wrapper and FileStar containerDan Goodliffe2023-02-21
|
* Add helper Selection to insert into a map based on a member value as keyDan Goodliffe2023-02-21
|
* Accept a CSV for glm::vec dataDan Goodliffe2023-02-21
|
* Allow override member variable names and selection helper when mapping ↵Dan Goodliffe2023-02-21
| | | | members for persistence
* Make sure an object is created before remembering itDan Goodliffe2023-02-21
|
* Add SAXParse base classDan Goodliffe2023-02-21
|
* Swap @ prefix for p. prefix for special value namesDan Goodliffe2023-02-20
|
* Add helper operator to perform vec3*mat4 and perspective divideDan Goodliffe2023-02-01
|
* Add utilities for mutating, concatenating, creating vectorsDan Goodliffe2023-02-01
|
* Add missing bracesDan Goodliffe2023-01-26
|
* Fix up all the static analyzer warningsDan Goodliffe2023-01-08
|
* Add gl_traits for all the common typesDan Goodliffe2023-01-02
|
* Add a traits struct to lookup sizes/type enums for passing to OpenGLDan Goodliffe2023-01-02
|
* Add a concept for sequential collections suitable for passing to OpenGLDan Goodliffe2023-01-02
|
* Allow operator*= on spans, not just arraysDan Goodliffe2022-12-30
|
* Add helper to produce cartesian product of two arraysDan Goodliffe2022-12-29
|
* constexpr collections helpersDan Goodliffe2022-12-29
|
* Add helper to apply perspective divisionDan Goodliffe2022-12-28
| | | | Returns vec3 by default, but dimensions can be specified
* Add two new array helpersDan Goodliffe2022-12-28
| | | | | * create a new array from an old one and a mutation * mutate all the members of an existing array
* Use the existence of .substr(...) to test if a T is stringlikeDan Goodliffe2022-12-28
|
* Helper for midpoint of pairDan Goodliffe2022-12-18
|
* Pair support for streamsDan Goodliffe2022-12-18
|
* Helper to sort glm::vecs by a specific axisDan Goodliffe2022-12-18
|
* Helper operator+ to join arraysDan Goodliffe2022-12-18
|
* Add a mini C filesystem wrapper library with mmap supportDan Goodliffe2022-12-11
|
* Rename rdiv to ratio and add a vec2 overrideDan Goodliffe2022-11-18
|
* Restructure how shaders are worked withDan Goodliffe2022-11-03
| | | | Needs a tidy-up
* Add frame and render buffers to glArraysDan Goodliffe2022-10-30
|
* Add AnyPtr for accepting pointers of any kind into a functionDan Goodliffe2022-10-28
|
* Tidy and de-dupe enumDetailsDan Goodliffe2022-10-24
|
* Add magic support to printing/parsing/validating enumerationsDan Goodliffe2022-10-22
|
* Add ConstTypeDefs as a const only variant of StdTypeDefsDan Goodliffe2022-10-13
|
* Inheritable of standard typedefsDan Goodliffe2022-10-13
|
* Support searching node network by vec3 positionDan Goodliffe2022-10-13
|
* Add collection methods for finding and/or creating objectsDan Goodliffe2022-10-08
|
* Latest clang-formattingDan Goodliffe2022-10-02
|
* Ray function to test if it passes close to a sequence of edges defined by ↵Dan Goodliffe2022-08-29
| | | | nodes along the path
* Ray function a calculate how close it passes to a line defined by 2 pointsDan Goodliffe2022-08-29
|
* Generic solution for streaming collections that can be spannedDan Goodliffe2022-08-29
|
* Make utf8_string_view work on any contiguous collection of charsDan Goodliffe2022-08-22
| | | | const char * const or container with .data() and .length()