import java.applet.Applet; import java.awt.*; import java.awt.event.*; import java.applet.*; import java.awt.geom.*; import java.math.*; import java.io.*; /*This is the class of polyhedra we use for our exact integer calculations.*/ public class LongPolyhedron { LongVector[] V=new LongVector[20]; int[] MOVE=new int[4]; //arithmetic graph fragment - determines F action int[] FACE; //list of faces long SCALE; //scale factor for the polyhedron int count; //number of vertices long VOLUME; public LongPolyhedron() {} public LongPolyhedron(LongPolyhedron P) { this.count=P.count; for(int i=0;i