star-cad

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

commit 1dfdcda8ebebb1900c6e63f88f7730705b7d5b0c
parent 06ea5f14c0a9a42d3eeb49e767eefd355ff5c7a0
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date:   Thu, 21 Aug 2025 18:09:24 +0200

Fix scad_step_import arg. order

The code swapped the 2 const char* args.

Diffstat:
Msrc/scad_geometry.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/scad_geometry.c b/src/scad_geometry.c @@ -2849,8 +2849,8 @@ error: res_T scad_step_import - (const char* filename, - const char* prefix_name, + (const char* prefix_name, + const char* filename, struct scad_geometry*** out_geometry, size_t* out_n) {