public class ArrayWith3Points {
  public static void main( String[] args ) {
    Point[] points = new Point[ 5 ];
    points[0] = new Point( 0, 0 );
    points[1] = new Point( 4, 0 );
    points[2] = new Point( 3, 5 );

    LJV.Context ctxt = LJV.newContext();
    ctxt.treatAsPrimitive( Point.class );
    LJV.drawGraph( ctxt, points );
  }
}

