Skip to content

Commit

Permalink
DemoDisplay.java: Displays the graphics demo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hengxiugao committed Oct 25, 2014
1 parent 5e1b777 commit dba841b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions DemoDisplay.java
@@ -0,0 +1,35 @@
// DemoDisplay.java: Displays the graphics demo.

/* CGDemo is a companion of the textbook
L. Ammeraal and K. Zhang, Computer Graphics for Java Programmers,
2nd Edition, Wiley, 2006.
Copyright (C) 2006 Janis Schubert, Kang Zhang, Leen Ammeraal
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of
the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public
License along with this program; if not, write to
the Free Software Foundation, Inc., 51 Franklin Street,
Fifth Floor, Boston, MA 02110-1301, USA.
*/

public class DemoDisplay
{
DemoDisplay()
{
DemoDisplayFrame demoframe = new DemoDisplayFrame();
demoframe.pack();
demoframe.setSize(1000, 830);
demoframe.setVisible(true);
}
}

0 comments on commit dba841b

Please sign in to comment.