re-enabled path support
[org.ibex.core.git] / src / org / ibex / graphics / Path.java
index 71063a2..7c0fd40 100644 (file)
@@ -36,6 +36,7 @@ public class Path {
     static final byte TYPE_CUBIC = 3;
     static final byte TYPE_QUADRADIC = 4;
 
+    public static Path parse(String s) { return Tokenizer.parse(s); }
     public static class Tokenizer {
         // FIXME: check array bounds exception for improperly terminated string
         String s;
@@ -534,6 +535,4 @@ public class Path {
             return ret;
         }
     }
-
-
 }