4a3f3df9cab079354e8a9f4cf6c56f616f1ea0ab kent Fri Apr 6 16:29:22 2012 -0700 Removing MySQL linking dependency. diff --git src/hg/autoSql/doc2.as src/hg/autoSql/doc2.as deleted file mode 100644 index 725be17..0000000 --- src/hg/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" - ) -