Revision: 76693
http://sourceforge.net/p/brlcad/code/76693
Author: starseeker
Date: 2020-08-10 17:16:54 +0000 (Mon, 10 Aug 2020)
Log Message:
-----------
B is another manifestation of the draw command
Modified Paths:
--------------
brlcad/branches/RELEASE/src/libged/draw/draw.c
Modified: brlcad/branches/RELEASE/src/libged/draw/draw.c
===================================================================
--- brlcad/branches/RELEASE/src/libged/draw/draw.c 2020-08-10 15:53:38 UTC
(rev 76692)
+++ brlcad/branches/RELEASE/src/libged/draw/draw.c 2020-08-10 17:16:54 UTC
(rev 76693)
@@ -1315,6 +1315,9 @@
struct ged_cmd_impl e_cmd_impl = {"e", ged_draw_core, GED_CMD_DEFAULT};
const struct ged_cmd e_cmd = { &e_cmd_impl };
+struct ged_cmd_impl B_cmd_impl = {"B", ged_draw_core, GED_CMD_DEFAULT};
+const struct ged_cmd B_cmd = { &B_cmd_impl };
+
struct ged_cmd_impl ev_cmd_impl = {"ev", ged_ev_core, GED_CMD_DEFAULT};
const struct ged_cmd ev_cmd = { &ev_cmd_impl };
@@ -1326,9 +1329,9 @@
struct ged_cmd_impl preview_cmd_impl = {"preview", ged_preview_core,
GED_CMD_DEFAULT};
const struct ged_cmd preview_cmd = { &preview_cmd_impl };
-const struct ged_cmd *draw_cmds[] = { &draw_cmd, &e_cmd, &ev_cmd,
&loadview_cmd, &preview_cmd, NULL };
+const struct ged_cmd *draw_cmds[] = { &draw_cmd, &e_cmd, &B_cmd, &ev_cmd,
&loadview_cmd, &preview_cmd, NULL };
-static const struct ged_plugin pinfo = { draw_cmds, 5 };
+static const struct ged_plugin pinfo = { draw_cmds, 6 };
COMPILER_DLLEXPORT const struct ged_plugin *ged_plugin_info()
{
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