From c8e0d487886dbec1e3a994ea36724bbf59f5122a Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Tue, 9 Oct 2007 07:38:25 +0000 Subject: Integration of Tomas Hrasky's port of basic GLU NURBS functionality from C++ to Java, plus example applications, done as part of his Bachelor of Science degree at the University of Hradec Králové, Faculty of Informatics and Management. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Current state of code is documented in src/classes/com/sun/opengl/impl/nurbs/README.txt. Example applications require Java 1.5 and are not currently built by default. Specify -Djogl.nurbs=1 during jogl-demos build with a 1.5 javac on the PATH to build them. Dependent jars are copied to build output directory. Deleted old partially-complete GLU NURBS port. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@223 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4 --- src/demos/nurbs/icons/IconFactory.java | 19 +++++++++++++++++++ src/demos/nurbs/icons/add.png | Bin 0 -> 1447 bytes src/demos/nurbs/icons/adept_sourceseditor.png | Bin 0 -> 2055 bytes src/demos/nurbs/icons/exit.png | Bin 0 -> 1426 bytes src/demos/nurbs/icons/fileclose.png | Bin 0 -> 2023 bytes src/demos/nurbs/icons/fileimport.png | Bin 0 -> 1831 bytes src/demos/nurbs/icons/filenew.png | Bin 0 -> 1580 bytes src/demos/nurbs/icons/folder_new.png | Bin 0 -> 2311 bytes src/demos/nurbs/icons/info.png | Bin 0 -> 1884 bytes src/demos/nurbs/icons/math_rsup.png | Bin 0 -> 1243 bytes src/demos/nurbs/icons/mouse.png | Bin 0 -> 1771 bytes src/demos/nurbs/icons/newfunction.png | Bin 0 -> 1901 bytes 12 files changed, 19 insertions(+) create mode 100755 src/demos/nurbs/icons/IconFactory.java create mode 100644 src/demos/nurbs/icons/add.png create mode 100644 src/demos/nurbs/icons/adept_sourceseditor.png create mode 100644 src/demos/nurbs/icons/exit.png create mode 100644 src/demos/nurbs/icons/fileclose.png create mode 100644 src/demos/nurbs/icons/fileimport.png create mode 100644 src/demos/nurbs/icons/filenew.png create mode 100644 src/demos/nurbs/icons/folder_new.png create mode 100644 src/demos/nurbs/icons/info.png create mode 100644 src/demos/nurbs/icons/math_rsup.png create mode 100644 src/demos/nurbs/icons/mouse.png create mode 100644 src/demos/nurbs/icons/newfunction.png (limited to 'src/demos/nurbs/icons') diff --git a/src/demos/nurbs/icons/IconFactory.java b/src/demos/nurbs/icons/IconFactory.java new file mode 100755 index 0000000..88d8539 --- /dev/null +++ b/src/demos/nurbs/icons/IconFactory.java @@ -0,0 +1,19 @@ +package demos.nurbs.icons; + +import java.io.*; +import javax.swing.ImageIcon; +import com.sun.opengl.util.StreamUtil; + +public class IconFactory { + private IconFactory() {} + + public static ImageIcon getIcon(String resourceName) { + try { + InputStream input = IconFactory.class.getClassLoader().getResourceAsStream(resourceName); + byte[] data = StreamUtil.readAll(input); + return new ImageIcon(data, resourceName); + } catch (IOException e) { + return new ImageIcon(); + } + } +} diff --git a/src/demos/nurbs/icons/add.png b/src/demos/nurbs/icons/add.png new file mode 100644 index 0000000..ade93b9 Binary files /dev/null and b/src/demos/nurbs/icons/add.png differ diff --git a/src/demos/nurbs/icons/adept_sourceseditor.png b/src/demos/nurbs/icons/adept_sourceseditor.png new file mode 100644 index 0000000..c69015a Binary files /dev/null and b/src/demos/nurbs/icons/adept_sourceseditor.png differ diff --git a/src/demos/nurbs/icons/exit.png b/src/demos/nurbs/icons/exit.png new file mode 100644 index 0000000..5313b7a Binary files /dev/null and b/src/demos/nurbs/icons/exit.png differ diff --git a/src/demos/nurbs/icons/fileclose.png b/src/demos/nurbs/icons/fileclose.png new file mode 100644 index 0000000..84813bc Binary files /dev/null and b/src/demos/nurbs/icons/fileclose.png differ diff --git a/src/demos/nurbs/icons/fileimport.png b/src/demos/nurbs/icons/fileimport.png new file mode 100644 index 0000000..3bf3b99 Binary files /dev/null and b/src/demos/nurbs/icons/fileimport.png differ diff --git a/src/demos/nurbs/icons/filenew.png b/src/demos/nurbs/icons/filenew.png new file mode 100644 index 0000000..1f7f88e Binary files /dev/null and b/src/demos/nurbs/icons/filenew.png differ diff --git a/src/demos/nurbs/icons/folder_new.png b/src/demos/nurbs/icons/folder_new.png new file mode 100644 index 0000000..1ea3951 Binary files /dev/null and b/src/demos/nurbs/icons/folder_new.png differ diff --git a/src/demos/nurbs/icons/info.png b/src/demos/nurbs/icons/info.png new file mode 100644 index 0000000..e3c8adb Binary files /dev/null and b/src/demos/nurbs/icons/info.png differ diff --git a/src/demos/nurbs/icons/math_rsup.png b/src/demos/nurbs/icons/math_rsup.png new file mode 100644 index 0000000..d689192 Binary files /dev/null and b/src/demos/nurbs/icons/math_rsup.png differ diff --git a/src/demos/nurbs/icons/mouse.png b/src/demos/nurbs/icons/mouse.png new file mode 100644 index 0000000..fd57fac Binary files /dev/null and b/src/demos/nurbs/icons/mouse.png differ diff --git a/src/demos/nurbs/icons/newfunction.png b/src/demos/nurbs/icons/newfunction.png new file mode 100644 index 0000000..f890ef2 Binary files /dev/null and b/src/demos/nurbs/icons/newfunction.png differ -- cgit v1.2.3