[wadalabfont-kit] / java / Skeleton.java  

View of /java/Skeleton.java

Parent Directory | Revision Log
Revision: 1.1.1.1 - (download) (as text) (annotate) (vendor branch)
Thu Dec 28 08:54:22 2000 UTC (23 years, 4 months ago) by ktanaka
Branch: ktanaka
CVS Tags: tmp
Changes since 1.1: +0 -0 lines
change to CVS wadalab font project
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 String toString(){
    String ret="Skeleton(";
    int i,len=points.length;
    for(i=0;i<len;i++)
      ret+=points[i].toString()+",";
    len=elements.length;
    for(i=0;i<len;i++)
      ret+=elements[i].toString()+",";
    return ret+")";
  }
}

ktanaka

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help