import javax.media.j3d.*; import javax.vecmath.*; class Grille { public TransformGroup root; public Grille( int N, int M, double width, double height ) { int l,c,n; double L = width/M; // ecart horizontal double H = height/N; // ecart vertical root = new TransformGroup(); //=========== le tableau de points ================================== Point3d[] points = new Point3d[N*M]; for( l=0; l