import java.awt.*; import java.util.*; public class Points3d extends Object3dAdaptor{ public static int color; protected Point3dObject3d[] pts; protected Vector labels; private Object3dList model; //display this one at frame zero public Points3d() { centre = Point3d.o; pts = null; labels = null; } public double depthBias(View3d v) { return 4*FRONTBIAS; } public Points3d set(Point3dObject3d[] pts){ this.pts = pts; labels = null; model = new Object3dList(pts.length); for (int i=0; i =0&&i= 0; i--){ pts[i].toVRML(v); } if (color!=-1) { v.setDefaultColor(save); } } }