/** * La classe ProjectionOrthographique implante un programme d'affichage 3D * en fil de fer d'une scene dessinee en projection parallele orthographique. * * @author Nicolas Janey * @author nicolas.janey@univ-fcomte.fr * @version 1.0, 16/11/08 */ public class ProjectionOrthographique { private static int temporisation = 50; public static void main(String [] args) { Afficheur afficheur =(Afficheur) new AfficheurProjectionOrthographique(); ApplicationFrame f = new ApplicationFrame("Projection parallele orthographique", afficheur); f.setSize(480,360); f.setLocation(50,250); ThreadTacheDeFond ttdf = new ThreadTacheDeFond(temporisation,f.getCanvas()); ttdf.start(); f.setVisible(true); } }