Skip to content

Commit

Permalink
Since our return type is int, document using integer values
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Aug 17, 2023
1 parent e118c7d commit 8e5e79f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/bg/trimesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ BG_EXPORT extern int bg_trimesh_manifold_closed(int vcnt, int fcnt, fastf_t *v,
BG_EXPORT extern int bg_trimesh_oriented(int vcnt, int fcnt, fastf_t *v, int *f);

/**
* Check if a mesh is topologically solid. Returns TRUE if the mesh is
* NOT SOLID and FALSE if the mesh is SOLID. A FALSE outcome indicates
* the mesh satisfies all three criteria: Closed, Manifold, Oriented
* Check if a mesh is topologically solid. Returns 1 if the mesh is NOT SOLID
* and 0 if the mesh is SOLID. A SOLID (0) outcome indicates the mesh satisfies
* all three criteria: Closed, Manifold, Oriented
*/
BG_EXPORT extern int bg_trimesh_solid(int vcnt, int fcnt, fastf_t *v, int *f, int **bedges);

Expand Down

0 comments on commit 8e5e79f

Please sign in to comment.