commit a02521f2c0ebf792d3f5bb354e1515a002edc4cb
parent 8cffbb805d07e6ebdda3d8c5e0b10d861f3821da
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Tue, 2 Feb 2021 11:36:39 +0100
Fix comments
Diffstat:
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/src/test_sdis_contact_resistance.c b/src/test_sdis_contact_resistance.c
@@ -71,18 +71,18 @@
******************************************************************************/
static const double model3d_vertices[12/*#vertices*/ * 3/*#coords per vertex*/]
= {
- 0.0, 0.0, 0.0, // 0 => 0
- 0.5, 0.0, 0.0, // => 1
- 1.0, 0.0, 0.0, // 1 => 2
- 0.0, 1.0, 0.0, // 2 => 3
- 0.5, 1.0, 0.0, // => 4
- 1.0, 1.0, 0.0, // 3 => 5
- 0.0, 0.0, 1.0, // 4 => 6
- 0.5, 0.0, 1.0, // => 7
- 1.0, 0.0, 1.0, // 5 => 8
- 0.0, 1.0, 1.0, // 6 => 9
- 0.5, 1.0, 1.0, // => 10
- 1.0, 1.0, 1.0 // 7 => 11
+ 0.0, 0.0, 0.0,
+ 0.5, 0.0, 0.0,
+ 1.0, 0.0, 0.0,
+ 0.0, 1.0, 0.0,
+ 0.5, 1.0, 0.0,
+ 1.0, 1.0, 0.0,
+ 0.0, 0.0, 1.0,
+ 0.5, 0.0, 1.0,
+ 1.0, 0.0, 1.0,
+ 0.0, 1.0, 1.0,
+ 0.5, 1.0, 1.0,
+ 1.0, 1.0, 1.0
};
static const size_t model3d_nvertices = sizeof(model3d_vertices) / sizeof(double[3]);