Revision: 75975
          http://sourceforge.net/p/brlcad/code/75975
Author:   starseeker
Date:     2020-05-28 21:33:48 +0000 (Thu, 28 May 2020)
Log Message:
-----------
Transfer some notes to the files in question and delete mk.tr

Modified Paths:
--------------
    brlcad/trunk/doc/CMakeLists.txt
    brlcad/trunk/src/shapes/bolt.c
    brlcad/trunk/src/shapes/gastank.c
    brlcad/trunk/src/shapes/handle.c
    brlcad/trunk/src/shapes/window.c
    brlcad/trunk/src/shapes/window_frame.c
    brlcad/trunk/src/shapes/wire.c

Removed Paths:
-------------
    brlcad/trunk/doc/mk.tr

Modified: brlcad/trunk/doc/CMakeLists.txt
===================================================================
--- brlcad/trunk/doc/CMakeLists.txt     2020-05-28 21:21:59 UTC (rev 75974)
+++ brlcad/trunk/doc/CMakeLists.txt     2020-05-28 21:33:48 UTC (rev 75975)
@@ -196,7 +196,6 @@
   mged/wm-leg1.ps
   mged/wm-prims.ps
   mged/wm-tube.ps
-  mk.tr
   notes/ecosystem.dot
   notes/regions.txt
   notes/rounding.txt

Deleted: brlcad/trunk/doc/mk.tr
===================================================================
--- brlcad/trunk/doc/mk.tr      2020-05-28 21:21:59 UTC (rev 75974)
+++ brlcad/trunk/doc/mk.tr      2020-05-28 21:33:48 UTC (rev 75975)
@@ -1,116 +0,0 @@
-.de HD
-'sp |1.0i
-..
-.de FO
-.ft R
-.tl ''%''
-'bp
-..
-.wh 0 HD
-.wh -1.00i FO
-.sp 10
-.vs 12
-.ll 6.6i
-.po .8i
-.nf
-.\"    Last Update to File:  27 October 1992 - to put in troff format
-.\"    To Print:
-.\"    troff -Ti300 mk.tr | dimp -P imt2 &
-.ft B
-.ce
-Make Programs
-.sp 2
-.ft R
-.ce 3
-Susan A. Coates
-The Army Research Laboratory
-ARL-SLAD-BVLD-VMB
-.sp 2
-.fi
-This document lists some new programs in BRL-CAD release 4.4 that
-create common objects used in mged databases.  These programs are
-located in the directory proc-db.
-.sp
-For a more complete description see the manual pages for each program.
-.sp 2
-.ft B
-.nf
-mk_bolt
-.fi
-.ft R
-This program creates an mged data base of bolts.  There are four types
-of bolts that can be created but only one type can be in the data base
-at a time.  The four types of bolts that may be created are listed
-below.
-.sp
-.in 0.5i
-.nf
-       bolt head
-       bolt head and washer
-       bolt head, washer, and bolt stem
-       bolt head and bolt stem
-.fi
-.sp
-.in -0.5i
-Up to twenty-six bolts may be created in one data base.  The user may
-run this program interactively or he may specify options on a command
-line.
-.sp 2
-.ft B
-.nf
-mk_handle
-.fi
-.ft R
-This program creates up to twenty-six handles of one size and places
-them in a new mged data base.  The handles are composed of three
-cylinders, two tori, and two arb8s.  The top of the handle and the
-sides are composed of cylinders.  The two bends in the handles are
-made by using tori.  The arb8s define which part of the tori are to be
-used.  This program may be run interactively or the user may specify
-options on a command line.
-.sp 2
-.ft B
-.nf
-mk_window
-.fi
-.ft R
-This program creates an mged data base containing up to twenty-six
-windows of the same size.  The window is rectangular in shape with
-rounded corners.  The user may run the program interactively or he may
-specify options on the command line.
-.sp 2
-.ft B
-.nf
-mk_winfrm
-.fi
-.ft R
-This program creates an mged data base of window frames.  Up to
-twenty- six window frames of the same size my be created.  The window
-frame is rectangular in shape with rounded corners.  Again, this
-program may be run interactively or the user may specify options on
-the command line.
-.sp 2
-.ft B
-.nf
-mk_gastank
-.fi
-.ft R
-This program creates a solid gas tank with rounded corners.  The
-object is appropriate for use with radar signature models.  It is not
-appropriate for infra red models or vulnerability models since the
-tank is solid.  Again, this program will create up to twenty-six gas
-tanks of the same size and place them in a new mged data base.  The
-user may run the program interactively or he may specify options on
-the command line.
-.sp 2
-.ft B
-.nf
-mk_wire
-.fi
-.ft R
-This program is used to create up to ten solid wire or fuel segments
-by entering the starting and ending points of each segment and the
-radius at these points.  The maximum number of segments may be
-extended to 100 by changing the variable MAXSEG.
-
-

Modified: brlcad/trunk/src/shapes/bolt.c
===================================================================
--- brlcad/trunk/src/shapes/bolt.c      2020-05-28 21:21:59 UTC (rev 75974)
+++ brlcad/trunk/src/shapes/bolt.c      2020-05-28 21:33:48 UTC (rev 75975)
@@ -21,6 +21,16 @@
  *
  * Program to make a bolt using libwdb.  The objects will be in mm.
  *
+ * Introduced in BRL-CAD release 4.4.  Original notes:
+ * This program creates an mged data base of bolts.  There are four types of
+ * bolts that can be created but only one type can be in the data base at a
+ * time.  The four types of bolts that may be created are listed below:
+ *
+ *      bolt head
+ *      bolt head and washer
+ *      bolt head, washer, and bolt stem
+ *      bolt head and bolt stem
+ *
  */
 
 #include "common.h"

Modified: brlcad/trunk/src/shapes/gastank.c
===================================================================
--- brlcad/trunk/src/shapes/gastank.c   2020-05-28 21:21:59 UTC (rev 75974)
+++ brlcad/trunk/src/shapes/gastank.c   2020-05-28 21:33:48 UTC (rev 75975)
@@ -22,7 +22,10 @@
  * Program to create a gas tank using libwdb.  All dimensions are in
  * mm.  The gas tank is composed of 3 arb8s, 8 spheres, and 12
  * cylinders.  The gas tank is solid and centered at (0, 0, 0).
+ * Note that it is not approparte as-is for any application which
+ * expects the internal volume of the tank to be modeled as well.
  *
+ * Introduced in BRL-CAD release 4.4.
  */
 
 #include "common.h"

Modified: brlcad/trunk/src/shapes/handle.c
===================================================================
--- brlcad/trunk/src/shapes/handle.c    2020-05-28 21:21:59 UTC (rev 75974)
+++ brlcad/trunk/src/shapes/handle.c    2020-05-28 21:33:48 UTC (rev 75975)
@@ -25,6 +25,7 @@
  * centered at (0, 0, 0) and the height of the handle will extend in
  * the positive z-direction.
  *
+ * Introduced in BRL-CAD release 4.4.
  */
 
 #include "common.h"

Modified: brlcad/trunk/src/shapes/window.c
===================================================================
--- brlcad/trunk/src/shapes/window.c    2020-05-28 21:21:59 UTC (rev 75974)
+++ brlcad/trunk/src/shapes/window.c    2020-05-28 21:33:48 UTC (rev 75975)
@@ -24,6 +24,7 @@
  * cylinders.  The front of the window is centered at (0, 0, 0) and
  * extends in the negative x-direction the depth of the window.
  *
+ * Introduced in BRL-CAD release 4.4.
  */
 
 #include "common.h"

Modified: brlcad/trunk/src/shapes/window_frame.c
===================================================================
--- brlcad/trunk/src/shapes/window_frame.c      2020-05-28 21:21:59 UTC (rev 
75974)
+++ brlcad/trunk/src/shapes/window_frame.c      2020-05-28 21:33:48 UTC (rev 
75975)
@@ -24,6 +24,7 @@
  * cylinders.  The front of the window frame is centered at (0, 0, 0) and
  * extends in the negative x-direction the depth of the window frame.
  *
+ * Introduced in BRL-CAD release 4.4.
  */
 
 #include "common.h"

Modified: brlcad/trunk/src/shapes/wire.c
===================================================================
--- brlcad/trunk/src/shapes/wire.c      2020-05-28 21:21:59 UTC (rev 75974)
+++ brlcad/trunk/src/shapes/wire.c      2020-05-28 21:33:48 UTC (rev 75975)
@@ -22,6 +22,7 @@
  * This is a program to create wiring or fuel lines.  The user Enters
  * only the coordinates of the endpoints and the radius of the lines.
  *
+ * Introduced in BRL-CAD release 4.4
  */
 
 #include "common.h"

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