Revision: 78104
          http://sourceforge.net/p/brlcad/code/78104
Author:   starseeker
Date:     2021-01-22 16:00:05 +0000 (Fri, 22 Jan 2021)
Log Message:
-----------
print matrix

Modified Paths:
--------------
    brlcad/trunk/src/libged/npush/npush.cpp

Modified: brlcad/trunk/src/libged/npush/npush.cpp
===================================================================
--- brlcad/trunk/src/libged/npush/npush.cpp     2021-01-22 15:47:22 UTC (rev 
78103)
+++ brlcad/trunk/src/libged/npush/npush.cpp     2021-01-22 16:00:05 UTC (rev 
78104)
@@ -787,8 +787,11 @@
                    }
 
                    // If verbosity is enabled, itemize the failures
+                   struct bu_vls imat = BU_VLS_INIT_ZERO;
                    bu_vls_printf(&msgs, "Conflicting instance: %s->%s:\n", 
dpi.parent_dp->d_namep, dpi.dp->d_namep);
-                   // TODO - print matrix
+                   bn_mat_print_vls(dpi.dp->d_namep, dpi.mat, &imat);
+                   bu_vls_printf(&msgs, "%s", bu_vls_cstr(&imat));
+                   bu_vls_free(&imat);
                }
            }
        }

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