star-cad

Geometric operators for computer-aided design
git clone git://git.meso-star.fr/star-cad.git
Log | Files | Refs | README | LICENSE

commit 45e1ba81fff54ccf79e28fc812a8aeb74c4b6d6e
parent bc1ec156b47344a4f07c98b006e52b960c435c6b
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Fri,  2 Sep 2022 17:32:55 +0200

Fix comments in scad.h

Diffstat:
Msrc/scad.h | 16++++++----------
1 file changed, 6 insertions(+), 10 deletions(-)

diff --git a/src/scad.h b/src/scad.h @@ -172,8 +172,8 @@ SCAD_API res_T scad_scene_mesh (void); -/* Compute the boolean union (the fusion) of the geometries `geom1' and `geom2'. - * Remove geom1 and geom2 from scene if `remove' is set. */ +/* Compute the boolean union (the fusion) of the geometries `geom1' and + * `geom2'. */ SCAD_API res_T scad_fuse_geometries (const char* name, /* Can be NULL */ @@ -183,8 +183,7 @@ scad_fuse_geometries const size_t tools_count, struct scad_geometry** out_geometry); -/* Compute the boolean difference between the geometries `geom1' and `geom2'. - * Remove geom1 and geom2 from scene if `remove' is set. */ +/* Compute the boolean difference between the geometries `geom1' and `geom2'. */ SCAD_API res_T scad_cut_geometries (const char* name, /* Can be NULL */ @@ -195,8 +194,7 @@ scad_cut_geometries struct scad_geometry** out_geometry); /* Compute the boolean intersection (the common parts) of the geometries - * `geom1' and `geom2'. - * Remove geom1 and geom2 from scene if `remove' is set. */ + * `geom1' and `geom2'. */ SCAD_API res_T scad_intersect_geometries (const char* name, /* Can be NULL */ @@ -206,8 +204,7 @@ scad_intersect_geometries const size_t tools_count, struct scad_geometry** out_geometry); -/* compute boundary intersection (the common part) of geom1 and geom2 - * Remove geom1 and geom2 from scene if `remove' is set. */ +/* compute boundary intersection (the common part) of geom1 and geom2. */ SCAD_API res_T scad_geometries_common_boundaries (const char* name, /* Can be NULL */ @@ -221,8 +218,7 @@ scad_geometries_common_boundaries * intersection of the geometries `geom1' and `geom2', making all interfaces * conformal. When applied to geometries of different dimensions, the lower * dimensional geometries will be automatically embedded in the higher - * dimensional geometries if they are not on their boundary. - * Remove geom1 and geom2 from scene if `remove' is set. */ + * dimensional geometries if they are not on their boundary. */ SCAD_API res_T scad_geometries_partition (const char* name, /* Can be NULL */