[Bf-blender-cvs] [c4f57362754] soc-2021-adaptive-cloth: float2x2: documentation

ishbosamiya noreply at git.blender.org
Mon Aug 30 09:15:07 CEST 2021


Commit: c4f57362754ab09b486c05c794fd9c0e685f1601
Author: ishbosamiya
Date:   Fri Aug 27 15:32:08 2021 +0530
Branches: soc-2021-adaptive-cloth
https://developer.blender.org/rBc4f57362754ab09b486c05c794fd9c0e685f1601

float2x2: documentation

===================================================================

M	source/blender/blenlib/BLI_float2x2.hh

===================================================================

diff --git a/source/blender/blenlib/BLI_float2x2.hh b/source/blender/blenlib/BLI_float2x2.hh
index cf8ac9dc23c..b64dc86a1ee 100644
--- a/source/blender/blenlib/BLI_float2x2.hh
+++ b/source/blender/blenlib/BLI_float2x2.hh
@@ -22,6 +22,15 @@
 
 namespace blender {
 
+/**
+ * A 2x2 column major matrix.
+ *
+ * float2x2::values[i] is the ith column of the matrix.
+ *
+ * |m00 m10|
+ * |m01 m11|
+ *
+ */
 struct float2x2 {
   float values[2][2];



More information about the Bf-blender-cvs mailing list