commit 2c9193d9ea0b26d162ed138865bde9b52d9da74d
parent bd2cdf43668f69447d8a962cb495fe69545c5723
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Mon, 27 Jun 2016 12:44:34 +0200
Small change in carvings.
No more offset, that is useless for polygons. Circles gain a center,
though.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ssol.h b/src/ssol.h
@@ -138,6 +138,7 @@ struct ssol_quadric {
};
struct ssol_carving_circle {
+ double center[2];
double radius;
};
@@ -154,7 +155,6 @@ struct ssol_carving {
struct ssol_carving_circle circle;
struct ssol_carving_polygon polygon;
} data;
- double offset[2];
char internal; /* TODO comment/rename (?) this */
};