import java.util.*; public class Skeleton { Point[] points; Element[] elements; Annotation[] annotations; Skeleton(Point[] points,Element[] elements,Annotation[] annotations){ this.points=points; this.elements=elements; this.annotations=annotations; } public Point[] getPoints(){ return points;} public Element[] getElements(){ return elements;} public Annotation[] getAnnotations(){ return annotations;} // まずは腕だめしに単純なやつをやってみる public Outline[] makeOutline(Renderer renderer){ Vector v=new Vector(); for(int i=0;i