class ReadShape{ String nomFichier; float taille; ArrayList vertices=new ArrayList(); int nbVertices,nbFaces,nbAretes; ReadShape(String filename,float taille_){ this.nomFichier=filename; this.taille=taille_; //readData(); } void readData(){ BufferedReader in=null; try{ in = createReader(nomFichier); String ligne = in.readLine(); while(ligne.charAt(0)=='#') ligne=in.readLine(); Scanner rl=new Scanner(ligne); nbVertices=rl.nextInt(); nbFaces=rl.nextInt(); nbAretes=rl.nextInt(); for(int i=0;i