d8feabb353b3c2650facea4afd08c86bb56e5549
kent
  Fri Apr 6 16:51:54 2012 -0700
Moving autoSql and autoDtd and autoXml back to just under hg.  A little autoSql -django fix.
diff --git src/utils/autoSql/doc2.as src/utils/autoSql/doc2.as
deleted file mode 100644
index 725be17..0000000
--- src/utils/autoSql/doc2.as
+++ /dev/null
@@ -1,33 +0,0 @@
-simple point
-"A three dimensional point"
-    (
-    float x;  "Horizontal coordinate"
-    float y;  "Vertical coordinate"
-    float z;  "In/out of screen coordinate"
-    )
-
-simple color
-"A red/green/blue format color"
-    (
-    ubyte red;  "Red value 0-255"
-    ubyte green; "Green value 0-255"
-    ubyte blue;  "Blue value 0-255"
-    )
-
-object face
-"A face of a three dimensional solid"
-    (
-    simple color color;  "Color of this face"
-    int pointCount;    "Number of points in this polygon"
-    uint[pointCount] points;   "Indices of points that make up face in polyhedron point array"
-    )
-
-table polyhedron
-"A solid three dimensional object"
-    (
-    int faceCount;  "Number of faces"
-    object face[faceCount] faces; "List of faces"
-    int pointCount; "Number of points"
-    simple point[pointCount] points; "Array of points"
-    )
-