/* Une classe application de test de l'algorithme */ /* de Cohen-Sutherland */ /* */ /* Auteur: Nicolas JANEY */ /* nicolas.janey@univ-fcomte.fr */ /* Novembre 2009 */ import java.awt.*; public class CohenSutherlandJava2D { public static void main(String [] args) { CSFrame f = new CSFrame("Cohen-Sutherland"); f.setSize(320,240); f.setLocation(50,250); f.setVisible(true); } }