Added licensing information to asymptote files
authorWilliam Trevor King <wking@thor.yang.physics.drexel.edu>
Thu, 6 Aug 2009 13:01:29 +0000 (09:01 -0400)
committerW. Trevor King <wking@drexel.edu>
Thu, 17 Sep 2009 16:49:14 +0000 (12:49 -0400)
asymptote/Circ-test.asy
asymptote/Circ.asy
asymptote/ElectroMag-test.asy
asymptote/ElectroMag.asy
asymptote/Makefile
asymptote/Mechanics-test.asy
asymptote/Mechanics.asy
asymptote/stickfigure.asy

index 3bb523bb519e2e8d08769eb1438013a2f573dd63..530914eea5c97e3ee84fb1125027e6457a91ad21 100644 (file)
@@ -1,3 +1,22 @@
+/* Test suite for Circ.asy.
+ *
+ * Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 import Circ;
 
 real u = 2cm, v=0;
index 3cb26cc1e1af0ed7464d917a20a13664951b0949..1b61e2d4a2818504a7faafa8f4450144f44e191f 100644 (file)
@@ -1,16 +1,23 @@
-// Circ.asy
-//
-// Version 0.1
-// An Asymptote library for drawing electical circuit diagrams.
-// Strongly based on makecirc.mp by GS Bustamante Argañaraz.
-// Copyright (c) 2003 GS Bustamante Argañaraz, 2008 WT King.
-//
-// This program may be distributed and/or modified under the conditions
-// of the LaTeX Project Public License, either version 1.3c of this
-// license or (at your option) any later version.  The latest version
-// of this license is in http://www.latex-project.org/lppl.txt.
-//
-// This program consists of the file Circ.asy
+/* Useful functions for drawing circuit diagrams.
+ * Version 0.1
+ *
+ * Copyright (C) 2003 GS Bustamante Argañaraz
+ *               2008-2009 W. Trevor King <wking@drexel.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
 
 // Command definitions for easier labeling
 
index a4d1be6622248243b49dba2674e04e27affdcfdb..8cf5617683507981dee11f3477f72bc4db906b72 100644 (file)
@@ -1,3 +1,22 @@
+/* Test suite for ElectroMag.asy.
+ *
+ * Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 import ElectroMag;
 
 real u = 1cm;
index b8d27757f905b74b1d30fe6cca0f7179c82d1739..05838b4fc944552130efe5c987eca43e767578ab 100644 (file)
@@ -1,3 +1,22 @@
+/* Useful functions for drawing Physics 102 figures.
+ *
+ * Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 import geometry;
 import Mechanics;
 
index fe5bf0b02f51eed1d6572b513b5675372665efdc..8ab0d99484c3dde8714f2495000078afed289a6e 100644 (file)
@@ -1,3 +1,21 @@
+# Run and clean up after my libraries' asymptote test suites.
+#
+# Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
 MODULES = Circ ElectroMag Mechanics
 
 all : $(MODULES:%=%-test.pdf)
index 3cc5e40c3c8ac5b9737b89303d8a22fb249b71e1..e3843e1e9c7904b1b03f4cbaf6d1ae2ebba9f165 100644 (file)
@@ -1,3 +1,22 @@
+/* Test suite for Mechanics.asy.
+ *
+ * Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 import Mechanics;
 
 real u = 1cm;
index 3eeb86a597abb276b60d46068b19237525d43ac4..477e91cd098536c2d6d0ee3ccc70de206e72676b 100644 (file)
@@ -1,3 +1,22 @@
+/* Useful functions for drawing Physics 101 figures.
+ *
+ * Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 import geometry;
 
 // ---------------------- Mass -------------------------
index 2ad15f655ea25ec0bfe11718d7fc326c3f9602c0..242b39eb79485495c77945d2a2d155536a7e096c 100644 (file)
@@ -1,3 +1,22 @@
+/* sticfigure drawings in asymptote.
+ *
+ * Copyright (C) 2008-2009 W. Trevor King <wking@drexel.edu>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+                       
 struct StickFigure {
   pair center;
   real height;