diff options
| author | Jesper Jensen <jesper@jnsn.dev> | 2026-04-06 09:43:13 +0200 |
|---|---|---|
| committer | Jesper Jensen <jesper@jnsn.dev> | 2026-04-06 13:02:39 +0200 |
| commit | 57ad11effae4e9562253d1fcf38469bd3d5ae69c (patch) | |
| tree | 5520ed05e1421a1969a878f42a14b0cd706fb1e5 /test/solve.c | |
| parent | 40190bc4e1a994a3faf5f5477d9f6e8b73ffe95d (diff) | |
Refactor the trangle building as propgation style
Diffstat (limited to 'test/solve.c')
| -rw-r--r-- | test/solve.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/solve.c b/test/solve.c index 65b51d6..ae54597 100644 --- a/test/solve.c +++ b/test/solve.c @@ -29,6 +29,7 @@ int main(int argc, char *argv[]) { free_constraints(&constraints); } + memset(assemblies, 0, sizeof(assemblies)); { printf("Triangle by 2 angles and a distance\n"); struct constraints constraints = {}; @@ -66,6 +67,7 @@ int main(int argc, char *argv[]) { free_constraints(&constraints); } + memset(assemblies, 0, sizeof(assemblies)); { printf("Two triangles sharing a point one defined by angles\n"); struct constraints constraints = {}; @@ -115,6 +117,7 @@ int main(int argc, char *argv[]) { free_constraints(&constraints); } + memset(assemblies, 0, sizeof(assemblies)); { printf("Two triangles sharing a point with an angle constrained base\n"); struct constraints constraints = {}; |
