public static List<GeneralPath> export(SWF swf, SHAPE shape, List<GeneralPath> strokes) {
   PathExporter exporter = new PathExporter(swf, shape, null);
   exporter.export();
   strokes.addAll(exporter.strokes);
   return exporter.paths;
 }
 public static List<GeneralPath> export(SWF swf, SHAPE shape) {
   PathExporter exporter = new PathExporter(swf, shape, new ColorTransform());
   exporter.export();
   return exporter.paths;
 }