commit 216beed6a6d88faf849cf681e36efeea985db6b3
parent 930fc3021128f42f74c2a411400406a1235e97cc
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 18 Oct 2022 16:35:19 +0200
Fix comments
Diffstat:
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/atrstm_partition.h b/src/atrstm_partition.h
@@ -20,7 +20,7 @@
#include <rsys/list.h>
#include <string.h>
-/* Definition of a partition along the 4 axis */
+/* Definition of a partition along the 3 axis */
#define LOG2_PARTITION_DEFINITION 5
#define PARTITION_DEFINITION BIT(LOG2_PARTITION_DEFINITION) /*32*/
#define PARTITION_NVOXELS \
diff --git a/src/atrstm_svx.h b/src/atrstm_svx.h
@@ -23,7 +23,7 @@
*
* For each SVX voxel, the data of the optical property are stored
* linearly as N single precision floating point data, with N computed as
- * bellow:
+ * below:
*
* N = ATRSTM_RADCOEFS_COUNT__ #optical properties per voxel
* * ATRSTM_SVX_OPS_COUNT__ #supported operations on each properties
@@ -34,7 +34,7 @@
* C' according to the operation `enum atrstm_svx_op O' is
* then computed as bellow:
*
- * id = C * NFLOATS_PER_CPNT + P * HTSKY_SVX_OPS_COUNT__ + O;
+ * id = C * NFLOATS_PER_CPNT + P * ATRSTM_SVX_OPS_COUNT__ + O;
* NFLOATS_PER_CPNT = ATRSTM_SVX_OPS_COUNT__ * ATRSTM_RADCOEFS_COUNT__;
*/