Ejemplo n.º 1
0
 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;
 }
Ejemplo n.º 2
0
 public static List<GeneralPath> export(SWF swf, SHAPE shape) {
   PathExporter exporter = new PathExporter(swf, shape, new ColorTransform());
   exporter.export();
   return exporter.paths;
 }