[wadalabfont-kit] / java / Line.java  

View of /java/Line.java

Parent Directory | Revision Log
Revision: 1.1 - (download) (as text) (annotate)
Thu Dec 28 08:54:23 2000 UTC (23 years, 4 months ago) by ktanaka
Branch: MAIN
Branch point for: ktanaka
Initial revision
import java.util.*;
public class Line extends OutlineComponent{
  Point p0,p1;
  Line(Point p0,Point p1){
    this.p0=p0; this.p1=p1;
  }
  public void render(Vector ret,double limit){
    ret.addElement(p0);
    ret.addElement(p1);
  }
}

ktanaka

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help