Revision: 77302
          http://sourceforge.net/p/brlcad/code/77302
Author:   starseeker
Date:     2020-10-01 13:13:00 +0000 (Thu, 01 Oct 2020)
Log Message:
-----------
Just the filename for a default tile in fast4-g, not the whole argv

Modified Paths:
--------------
    brlcad/trunk/NEWS
    brlcad/trunk/src/conv/fast4-g.c

Modified: brlcad/trunk/NEWS
===================================================================
--- brlcad/trunk/NEWS   2020-10-01 12:16:59 UTC (rev 77301)
+++ brlcad/trunk/NEWS   2020-10-01 13:13:00 UTC (rev 77302)
@@ -13,6 +13,7 @@
 --- 2020-xx-xx  Release 7.32.2                                     ---
 ----------------------------------------------------------------------
 
+* applied shorter default title in fast4-g conversions - Cliff Yapp
 * improved pixcmp support for subset image comparisons - Sean Morrison
 * added subtract subcommand to MGED analyze command - Cliff Yapp
 * added intersect subcommand to MGED analyze command - Cliff Yapp

Modified: brlcad/trunk/src/conv/fast4-g.c
===================================================================
--- brlcad/trunk/src/conv/fast4-g.c     2020-10-01 12:16:59 UTC (rev 77301)
+++ brlcad/trunk/src/conv/fast4-g.c     2020-10-01 13:13:00 UTC (rev 77302)
@@ -38,6 +38,7 @@
 #include "bu/app.h"
 #include "bu/debug.h"
 #include "bu/getopt.h"
+#include "bu/path.h"
 #include "rt/db4.h"
 #include "vmath.h"
 #include "nmg.h"
@@ -2839,8 +2840,12 @@
     rewind(fpin);
 
     /* Make an ID record if no vehicle card was found */
-    if (!vehicle[0])
-       mk_id_units(fpout, argv[bu_optind], "in");
+    if (!vehicle[0]) {
+       struct bu_vls fname = BU_VLS_INIT_ZERO;
+       bu_path_component(&fname, argv[bu_optind], BU_PATH_BASENAME);
+       mk_id_units(fpout, bu_vls_cstr(&fname), "in");
+       bu_vls_free(&fname);
+    }
 
     if (!quiet)
        bu_log("Building components....\n");

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.



_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to