66[ https://github.com/davidbrowne/dsga ] ( https://github.com/davidbrowne/dsga )
77
88## Current Version
9- v1.4.1
9+ v1.5.0
1010
1111## Minimum Version of Tested Compilers
1212* Microsoft Visual Studio 2022 v17.x
@@ -172,7 +172,7 @@ constexpr dsga::vec3 right_handed_normal(const dsga::vec3 &v1, const dsga::vec3
172172// cross product
173173//
174174
175- // arguments are of the vector base class type, and this function will be used if any passed argument is of type ``` indexed_vector```
175+ // arguments are of the vector base class type, and this function will be used if any passed argument is of type indexed_vector
176176template <bool W1, dsga::floating_point_scalar T1, typename D1, bool W2, dsga::floating_point_scalar T2, typename D2>
177177[[nodiscard]] constexpr auto cross(const dsga::vector_base<W1, T1, 3, D1> &a,
178178 const dsga::vector_base<W2, T2, 3, D2> &b) noexcept
@@ -183,7 +183,7 @@ template <bool W1, dsga::floating_point_scalar T1, typename D1, bool W2, dsga::f
183183 (a[0] * b[1]) - (b[0] * a[1]));
184184}
185185
186- // arguments are of type ``` basic_vector``` , and there is a compact swizzled implementation
186+ // arguments are of type basic_vector, and there is a compact swizzled implementation
187187template <dsga::floating_point_scalar T1, dsga::floating_point_scalar T2>
188188[[nodiscard]] constexpr auto cross(const dsga::basic_vector<T1, 3> &a,
189189 const dsga::basic_vector<T2, 3> &b) noexcept
@@ -278,7 +278,7 @@ To make the vectors and matrices as useful as possible in a C++ context, various
278278 * vector - pointer to scalars of concept type ```dsga::dimensional_scalar```
279279 * matrix - pointer to column vectors whose scalars are of concept type ```dsga::floating_point_scalar```
280280 * ```size```
281- * vector only - these allow logical use of ```data```
281+ * vector only - these ordering facilities allow logical use of ```data```
282282 * ```offsets```
283283 * ```sequence```
284284* Type Conversions
@@ -311,10 +311,10 @@ This is a c++20 library, so that needs to be the minimum standard that you tell
311311
312312## Status
313313
314- Current version: `v1.4.1 `
314+ Current version: `v1.5.0 `
315315
316316* Everything major has some tests, but code coverage is not 100%.
317- * [Last Released: v1.4 .0](https://github.com/davidbrowne/dsga/releases/tag/v1.4 .0)
317+ * [Last Released: v1.5 .0](https://github.com/davidbrowne/dsga/releases/tag/v1.5 .0)
318318
319319### The next steps
320320* Refining API documentation.
@@ -345,8 +345,8 @@ The tests have been most recently run on:
345345[ doctest] doctest version is "2.4.11"
346346[ doctest] run with "--help" for options
347347===============================================================================
348- [ doctest] test cases: 109 | 109 passed | 0 failed | 0 skipped
349- [ doctest] assertions: 2159 | 2159 passed | 0 failed |
348+ [ doctest] test cases: 111 | 111 passed | 0 failed | 0 skipped
349+ [ doctest] assertions: 2167 | 2167 passed | 0 failed |
350350[ doctest] Status: SUCCESS!
351351```
352352
@@ -356,8 +356,8 @@ The tests have been most recently run on:
356356[ doctest] doctest version is "2.4.11"
357357[ doctest] run with "--help" for options
358358===============================================================================
359- [ doctest] test cases: 109 | 109 passed | 0 failed | 0 skipped
360- [ doctest] assertions: 2159 | 2159 passed | 0 failed |
359+ [ doctest] test cases: 111 | 111 passed | 0 failed | 0 skipped
360+ [ doctest] assertions: 2167 | 2167 passed | 0 failed |
361361[ doctest] Status: SUCCESS!
362362```
363363
@@ -369,8 +369,8 @@ Performs all the unit tests except where there is lack of support for ```std::is
369369[ doctest] doctest version is "2.4.11"
370370[ doctest] run with "--help" for options
371371===============================================================================
372- [ doctest] test cases: 109 | 109 passed | 0 failed | 0 skipped
373- [ doctest] assertions: 2143 | 2143 passed | 0 failed |
372+ [ doctest] test cases: 111 | 111 passed | 0 failed | 0 skipped
373+ [ doctest] assertions: 2151 | 2151 passed | 0 failed |
374374[ doctest] Status: SUCCESS!
375375```
376376
@@ -382,8 +382,8 @@ Performs all the unit tests except where there is lack of support for ```std::is
382382[ doctest] doctest version is "2.4.11"
383383[ doctest] run with "--help" for options
384384===============================================================================
385- [ doctest] test cases: 109 | 109 passed | 0 failed | 0 skipped
386- [ doctest] assertions: 2159 | 2159 passed | 0 failed |
385+ [ doctest] test cases: 111 | 111 passed | 0 failed | 0 skipped
386+ [ doctest] assertions: 2167 | 2167 passed | 0 failed |
387387[ doctest] Status: SUCCESS!
388388```
389389
@@ -395,8 +395,8 @@ Performs all the unit tests except where there is lack of support for ```std::is
395395[ doctest] doctest version is "2.4.11"
396396[ doctest] run with "--help" for options
397397===============================================================================
398- [ doctest] test cases: 109 | 109 passed | 0 failed | 0 skipped
399- [ doctest] assertions: 2143 | 2143 passed | 0 failed |
398+ [ doctest] test cases: 111 | 111 passed | 0 failed | 0 skipped
399+ [ doctest] assertions: 2151 | 2151 passed | 0 failed |
400400[ doctest] Status: SUCCESS!
401401```
402402
@@ -408,8 +408,8 @@ Performs all the unit tests except where there is lack of support for ```std::is
408408[ doctest] doctest version is "2.4.11"
409409[ doctest] run with "--help" for options
410410===============================================================================
411- [ doctest] test cases: 109 | 109 passed | 0 failed | 0 skipped
412- [ doctest] assertions: 2159 | 2159 passed | 0 failed |
411+ [ doctest] test cases: 111 | 111 passed | 0 failed | 0 skipped
412+ [ doctest] assertions: 2167 | 2167 passed | 0 failed |
413413[ doctest] Status: SUCCESS!
414414```
415415
@@ -421,8 +421,8 @@ Performs all the unit tests except where there is lack of support for ```std::is
421421[ doctest] doctest version is "2.4.11"
422422[ doctest] run with "--help" for options
423423===============================================================================
424- [ doctest] test cases: 109 | 109 passed | 0 failed | 0 skipped
425- [ doctest] assertions: 2143 | 2143 passed | 0 failed |
424+ [ doctest] test cases: 111 | 111 passed | 0 failed | 0 skipped
425+ [ doctest] assertions: 2151 | 2151 passed | 0 failed |
426426[ doctest] Status: SUCCESS!
427427```
428428
0 commit comments