We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9735402 + c812eec commit 1a7deaaCopy full SHA for 1a7deaa
libraries/pico_vector/pretty_poly_types.hpp
@@ -14,7 +14,7 @@ namespace pretty_poly {
14
15
// 3x3 matrix for coordinate transformations
16
struct mat3_t {
17
- float v00, v10, v20, v01, v11, v21, v02, v12, v22 = 0.0f;
+ float v00 = 0.0f, v10 = 0.0f, v20 = 0.0f, v01 = 0.0f, v11 = 0.0f, v21 = 0.0f, v02 = 0.0f, v12 = 0.0f, v22 = 0.0f;
18
mat3_t() = default;
19
mat3_t(const mat3_t &m) = default;
20
inline mat3_t& operator*= (const mat3_t &m) {
0 commit comments