4a3f3df9cab079354e8a9f4cf6c56f616f1ea0ab
kent
  Fri Apr 6 16:29:22 2012 -0700
Removing MySQL linking dependency.
diff --git src/utils/autoSql/doc2.as src/utils/autoSql/doc2.as
new file mode 100644
index 0000000..725be17
--- /dev/null
+++ src/utils/autoSql/doc2.as
@@ -0,0 +1,33 @@
+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"
+    )
+