diff options
author | nobody <nobody@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-01-06 23:33:53 +0000 |
---|---|---|
committer | nobody <nobody@28c7f869-5b4e-e670-f602-82bfaf57f300> | 2006-01-06 23:33:53 +0000 |
commit | ed3fe3394103b0eddedde55fcb954079a5b42e8a (patch) | |
tree | db8c8f1ffff72a0d71724d1ae26efca9edb55db4 | |
parent | c545abfe43458988081e22bdffcee7b9ee0c8800 (diff) |
This commit was manufactured by cvs2svn to create branch 'dev-1_5'.
211 files changed, 1041 insertions, 592 deletions
diff --git a/COPYRIGHT.txt b/COPYRIGHT.txt index ddf4763..311bfd3 100644 --- a/COPYRIGHT.txt +++ b/COPYRIGHT.txt @@ -1,4 +1,4 @@ -Copyright (c) 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa +Copyright (c) 2005 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, U.S.A. All rights reserved. Sun Microsystems, Inc. has intellectual property rights relating to @@ -35,7 +35,7 @@ to entities identified on U.S. export exclusion lists, including, but not limited to, the denied persons and specially designated nationals lists is strictly prohibited. -Copyright (c) 2006 Sun Microsystems, Inc., 4150 Network Circle, Santa +Copyright (c) 2005 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, California 95054, Etats-Unis. Tous droits r�serv�s. Sun Microsystems, Inc. d�tient les droits de propri�t� intellectuels diff --git a/LICENSE.txt b/LICENSE.txt index eb6d30a..2236640 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. +Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions diff --git a/README-build.html b/README-build.html index d813751..5d6246a 100644 --- a/README-build.html +++ b/README-build.html @@ -5,7 +5,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -64,10 +64,10 @@ </target> <target name="subdirs"> + <ant dir="src/AWT_Interaction" target="${build.target}"/> <ant dir="src/AlternateAppearance" target="${build.target}"/> <ant dir="src/Appearance" target="${build.target}"/> <ant dir="src/AppearanceMixed" target="${build.target}"/> - <ant dir="src/Applet3D" target="${build.target}"/> <ant dir="src/Background" target="${build.target}"/> <ant dir="src/CgShaderTest" target="${build.target}"/> <ant dir="src/ConfiguredUniverse" target="${build.target}"/> @@ -95,11 +95,9 @@ <ant dir="src/PrintCanvas3D" target="${build.target}"/> <ant dir="src/PureImmediate" target="${build.target}"/> <ant dir="src/ReadRaster" target="${build.target}"/> - <ant dir="src/SgChangerListener" target="${build.target}"/> <ant dir="src/Sound" target="${build.target}"/> <ant dir="src/SphereMotion" target="${build.target}"/> <ant dir="src/SplineAnim" target="${build.target}"/> - <ant dir="src/SwingInteraction" target="${build.target}"/> <ant dir="src/Text2D" target="${build.target}"/> <ant dir="src/Text3D" target="${build.target}"/> <ant dir="src/TextureByReference" target="${build.target}"/> diff --git a/src/AWT_Interaction/AWTInteraction.html b/src/AWT_Interaction/AWTInteraction.html new file mode 100644 index 0000000..53b6238 --- /dev/null +++ b/src/AWT_Interaction/AWTInteraction.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<TITLE>AWT Interaction</TITLE> +</HEAD> +<BODY BGCOLOR="#000000"> +<applet align=middle code="AWTInteraction.class" width=256 height=256> +<blockquote> +<hr> +If you were using a Java-capable browser, +you would see Hello Universe! instead of this paragraph. +<hr> +</blockquote> +</applet> +</BODY> +</HTML> diff --git a/src/AWT_Interaction/AWTInteraction.java b/src/AWT_Interaction/AWTInteraction.java new file mode 100644 index 0000000..aaf48e6 --- /dev/null +++ b/src/AWT_Interaction/AWTInteraction.java @@ -0,0 +1,131 @@ +/* + * $RCSfile$ + * + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistribution of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistribution in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * Neither the name of Sun Microsystems, Inc. or the names of + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * This software is provided "AS IS," without a warranty of any + * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND + * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY + * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL + * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF + * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS + * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR + * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, + * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND + * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR + * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + * + * You acknowledge that this software is not designed, licensed or + * intended for use in the design, construction, operation or + * maintenance of any nuclear facility. + * + * $Revision$ + * $Date$ + * $State$ + */ + +import java.applet.Applet; +import java.awt.*; +import javax.swing.*; +import java.awt.event.*; +import java.awt.event.WindowAdapter; +import com.sun.j3d.utils.applet.MainFrame; +import com.sun.j3d.utils.geometry.ColorCube; +import com.sun.j3d.utils.universe.*; +import javax.media.j3d.*; +import javax.vecmath.*; + +public class AWTInteraction extends Applet { //implements ActionListener { + TransformGroup objTrans; + float angle = 0.0f; + Transform3D trans = new Transform3D(); + + JButton rotateB = new JButton("Rotate"); + + private SimpleUniverse u = null; + + public BranchGroup createSceneGraph() { + // Create the root of the branch graph + BranchGroup objRoot = new BranchGroup(); + + // Create the transform group node and initialize it to the + // identity. Enable the TRANSFORM_WRITE capability so that + // our behavior code can modify it at runtime. Add it to the + // root of the subgraph. + objTrans = new TransformGroup(); + objTrans.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE); + objRoot.addChild(objTrans); + + // Create a simple shape leaf node, add it to the scene graph. + objTrans.addChild(new ColorCube(0.4)); + + // create the AWTInteractionBehavior + AWTInteractionBehavior awtBehavior = + new AWTInteractionBehavior(objTrans); + rotateB.addActionListener(awtBehavior); + BoundingSphere bounds = new BoundingSphere(new Point3d(0.0, 0.0, 0.0), + 100.0); + awtBehavior.setSchedulingBounds(bounds); + objRoot.addChild(awtBehavior); + + return objRoot; + } + + public AWTInteraction() { + } + + public void init() { + setLayout(new BorderLayout()); + GraphicsConfiguration config = + SimpleUniverse.getPreferredConfiguration(); + + Canvas3D c = new Canvas3D(config); + add("Center", c); + + JPanel p = new JPanel(); + p.add(rotateB); + add("North", p); + + // Create a simple scene and attach it to the virtual universe + BranchGroup scene = createSceneGraph(); + scene.setCapability( BranchGroup.ALLOW_BOUNDS_READ ); + u = new SimpleUniverse(c); + + // This will move the ViewPlatform back a bit so the + // objects in the scene can be viewed. + u.getViewingPlatform().setNominalViewingTransform(); + + u.addBranchGraph(scene); + + } + + public void destroy() { + u.cleanup(); + } + + // + // The following allows HelloUniverse to be run as an application + // as well as an applet + // + public static void main(String[] args) { + new MainFrame(new AWTInteraction(), 256, 256); + } +} diff --git a/src/AWT_Interaction/AWTInteractionBehavior.java b/src/AWT_Interaction/AWTInteractionBehavior.java new file mode 100644 index 0000000..e4abdb8 --- /dev/null +++ b/src/AWT_Interaction/AWTInteractionBehavior.java @@ -0,0 +1,85 @@ +/* + * $RCSfile$ + * + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistribution of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistribution in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * Neither the name of Sun Microsystems, Inc. or the names of + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * This software is provided "AS IS," without a warranty of any + * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND + * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY + * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL + * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF + * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS + * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR + * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, + * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND + * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR + * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + * + * You acknowledge that this software is not designed, licensed or + * intended for use in the design, construction, operation or + * maintenance of any nuclear facility. + * + * $Revision$ + * $Date$ + * $State$ + */ + +import java.awt.*; +import java.awt.event.*; +import javax.media.j3d.*; +import javax.vecmath.*; +import java.util.*; + +public class AWTInteractionBehavior extends Behavior +implements ActionListener { + + private TransformGroup transformGroup; + private Transform3D trans = new Transform3D(); + private WakeupCriterion criterion; + private float angle = 0.0f; + + // create a new AWTInteractionBehavior + public AWTInteractionBehavior(TransformGroup tg) { + transformGroup = tg; + } + + // initialize the behavior to wakeup on a behavior post with the id + // MouseEvent.MOUSE_CLICKED + public void initialize() { + criterion = new WakeupOnBehaviorPost(this, + MouseEvent.MOUSE_CLICKED); + wakeupOn(criterion); + } + + // processStimulus to rotate the cube + public void processStimulus(Enumeration criteria) { + angle += Math.toRadians(10.0); + trans.rotY(angle); + transformGroup.setTransform(trans); + wakeupOn(criterion); + } + + // when the mouse is clicked, postId for the behavior + public void actionPerformed(ActionEvent e) { + postId(MouseEvent.MOUSE_CLICKED); + } +} + diff --git a/src/AWT_Interaction/AWTInteraction_plugin.html b/src/AWT_Interaction/AWTInteraction_plugin.html new file mode 100644 index 0000000..466b22d --- /dev/null +++ b/src/AWT_Interaction/AWTInteraction_plugin.html @@ -0,0 +1,39 @@ +<HTML> +<HEAD> +<TITLE>AWT Interaction</TITLE> +</HEAD> +<BODY BGCOLOR="#000000"> +<!--"CONVERTED_APPLET"--> +<!-- CONVERTER VERSION 1.3 --> +<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" +WIDTH = 256 HEIGHT = 256 ALIGN = middle codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0"> +<PARAM NAME = CODE VALUE = "AWTInteraction.class" > + +<PARAM NAME="type" VALUE="application/x-java-applet;version=1.2.2"> +<PARAM NAME="scriptable" VALUE="false"> +<COMMENT> +<EMBED type="application/x-java-applet;version=1.2.2" CODE = "AWTInteraction.class" WIDTH = 256 HEIGHT = 256 ALIGN = middle scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html"><NOEMBED></COMMENT> +<blockquote> +<hr> +If you were using a Java-capable browser, +you would see Hello Universe! instead of this paragraph. +<hr> +</blockquote> +</NOEMBED></EMBED> +</OBJECT> + +<!-- +<APPLET CODE = "AWTInteraction.class" WIDTH = 256 HEIGHT = 256 ALIGN = middle> +<blockquote> +<hr> +If you were using a Java-capable browser, +you would see Hello Universe! instead of this paragraph. +<hr> +</blockquote> + +</APPLET> +--> +<!--"END_CONVERTED_APPLET"--> + +</BODY> +</HTML> diff --git a/src/AWT_Interaction/build.xml b/src/AWT_Interaction/build.xml new file mode 100644 index 0000000..47e5a36 --- /dev/null +++ b/src/AWT_Interaction/build.xml @@ -0,0 +1,69 @@ +<?xml version="1.0"?> + +<!-- +/* + * $RCSfile$ + * + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions + * are met: + * + * - Redistribution of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * - Redistribution in binary form must reproduce the above copyright + * notice, this list of conditions and the following disclaimer in + * the documentation and/or other materials provided with the + * distribution. + * + * Neither the name of Sun Microsystems, Inc. or the names of + * contributors may be used to endorse or promote products derived + * from this software without specific prior written permission. + * + * This software is provided "AS IS," without a warranty of any + * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND + * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY + * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL + * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF + * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS + * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR + * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, + * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND + * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR + * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGES. + * + * You acknowledge that this software is not designed, licensed or + * intended for use in the design, construction, operation or + * maintenance of any nuclear facility. + * + * $Revision$ + * $Date$ + * $State$ + */ + --> + +<project basedir="." default="compile"> + <target name="compile"> + <javac + destdir="." srcdir="." + source="1.4" target="1.4" + debug="true" deprecation="true"> + </javac> + </target> + + <target name="all" depends="compile"> + </target> + + <target description="Clean all build products." name="clean"> + <delete> + <fileset dir="."> + <include name="**/*.class"/> + </fileset> + </delete> + </target> + +</project> diff --git a/src/AlternateAppearance/AlternateAppearanceBoundsTest.java b/src/AlternateAppearance/AlternateAppearanceBoundsTest.java index b080f97..009539b 100644 --- a/src/AlternateAppearance/AlternateAppearanceBoundsTest.java +++ b/src/AlternateAppearance/AlternateAppearanceBoundsTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/AlternateAppearance/AlternateAppearanceScopeTest.java b/src/AlternateAppearance/AlternateAppearanceScopeTest.java index 6a2d276..ac63ce7 100644 --- a/src/AlternateAppearance/AlternateAppearanceScopeTest.java +++ b/src/AlternateAppearance/AlternateAppearanceScopeTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/AlternateAppearance/SphereGroup.java b/src/AlternateAppearance/SphereGroup.java index 7b5d4db..80906ac 100644 --- a/src/AlternateAppearance/SphereGroup.java +++ b/src/AlternateAppearance/SphereGroup.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/AlternateAppearance/build.xml b/src/AlternateAppearance/build.xml index 4e57328..47e5a36 100644 --- a/src/AlternateAppearance/build.xml +++ b/src/AlternateAppearance/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Appearance/AppearanceTest.java b/src/Appearance/AppearanceTest.java index 2342ad6..6ab135f 100644 --- a/src/Appearance/AppearanceTest.java +++ b/src/Appearance/AppearanceTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Appearance/Tetrahedron.java b/src/Appearance/Tetrahedron.java index 5dfdee7..a34bb0e 100644 --- a/src/Appearance/Tetrahedron.java +++ b/src/Appearance/Tetrahedron.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Appearance/build.xml b/src/Appearance/build.xml index 4e57328..47e5a36 100644 --- a/src/Appearance/build.xml +++ b/src/Appearance/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/AppearanceMixed/AppearanceMixed.java b/src/AppearanceMixed/AppearanceMixed.java index cc2cad4..716140c 100644 --- a/src/AppearanceMixed/AppearanceMixed.java +++ b/src/AppearanceMixed/AppearanceMixed.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/AppearanceMixed/Tetrahedron.java b/src/AppearanceMixed/Tetrahedron.java index 5dfdee7..a34bb0e 100644 --- a/src/AppearanceMixed/Tetrahedron.java +++ b/src/AppearanceMixed/Tetrahedron.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/AppearanceMixed/build.xml b/src/AppearanceMixed/build.xml index 4e57328..47e5a36 100644 --- a/src/AppearanceMixed/build.xml +++ b/src/AppearanceMixed/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Background/BackgroundGeometry.java b/src/Background/BackgroundGeometry.java index 95b1649..abe95ba 100644 --- a/src/Background/BackgroundGeometry.java +++ b/src/Background/BackgroundGeometry.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Background/build.xml b/src/Background/build.xml index 4e57328..47e5a36 100644 --- a/src/Background/build.xml +++ b/src/Background/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/CgShaderTest/ObjLoadCg.java b/src/CgShaderTest/ObjLoadCg.java index 7711075..0cef002 100644 --- a/src/CgShaderTest/ObjLoadCg.java +++ b/src/CgShaderTest/ObjLoadCg.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/CgShaderTest/SphereCg.java b/src/CgShaderTest/SphereCg.java index 495036e..266d523 100644 --- a/src/CgShaderTest/SphereCg.java +++ b/src/CgShaderTest/SphereCg.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/CgShaderTest/build.xml b/src/CgShaderTest/build.xml index 4e57328..47e5a36 100644 --- a/src/CgShaderTest/build.xml +++ b/src/CgShaderTest/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/CgShaderTest/simple_fp.cg b/src/CgShaderTest/simple_fp.cg index e9cd44b..d651833 100644 --- a/src/CgShaderTest/simple_fp.cg +++ b/src/CgShaderTest/simple_fp.cg @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/CgShaderTest/simple_vp.cg b/src/CgShaderTest/simple_vp.cg index d030818..cec98ad 100644 --- a/src/CgShaderTest/simple_vp.cg +++ b/src/CgShaderTest/simple_vp.cg @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ConfiguredUniverse/ConfigObjLoad.java b/src/ConfiguredUniverse/ConfigObjLoad.java index 7cd5019..cc1a819 100644 --- a/src/ConfiguredUniverse/ConfigObjLoad.java +++ b/src/ConfiguredUniverse/ConfigObjLoad.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ConfiguredUniverse/README.txt b/src/ConfiguredUniverse/README.txt index fd2af8e..14263c6 100644 --- a/src/ConfiguredUniverse/README.txt +++ b/src/ConfiguredUniverse/README.txt @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)README.txt 1.1 01/10/19 20:44:35 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ This directory contains a simple example application that demonstrates the diff --git a/src/ConfiguredUniverse/build.xml b/src/ConfiguredUniverse/build.xml index 4e57328..47e5a36 100644 --- a/src/ConfiguredUniverse/build.xml +++ b/src/ConfiguredUniverse/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ConfiguredUniverse/j3d1x1 b/src/ConfiguredUniverse/j3d1x1 index 41173e3..a491e66 100644 --- a/src/ConfiguredUniverse/j3d1x1 +++ b/src/ConfiguredUniverse/j3d1x1 @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x1 1.2 01/10/29 15:28:11 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x1-behavior b/src/ConfiguredUniverse/j3d1x1-behavior index d291913..403b221 100644 --- a/src/ConfiguredUniverse/j3d1x1-behavior +++ b/src/ConfiguredUniverse/j3d1x1-behavior @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x1-behavior 1.2 01/10/29 15:32:55 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x1-stereo b/src/ConfiguredUniverse/j3d1x1-stereo index 3db4070..1adde3b 100644 --- a/src/ConfiguredUniverse/j3d1x1-stereo +++ b/src/ConfiguredUniverse/j3d1x1-stereo @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x1-stereo 1.2 01/10/29 15:40:14 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x1-vr b/src/ConfiguredUniverse/j3d1x1-vr index 587f481..aded1f3 100644 --- a/src/ConfiguredUniverse/j3d1x1-vr +++ b/src/ConfiguredUniverse/j3d1x1-vr @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x1-vr 1.2 01/10/29 15:41:30 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x1-window b/src/ConfiguredUniverse/j3d1x1-window index eec0e31..5b3484b 100644 --- a/src/ConfiguredUniverse/j3d1x1-window +++ b/src/ConfiguredUniverse/j3d1x1-window @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x1-window 1.2 01/10/29 15:26:11 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x2-flat b/src/ConfiguredUniverse/j3d1x2-flat index 667ea52..85a0767 100644 --- a/src/ConfiguredUniverse/j3d1x2-flat +++ b/src/ConfiguredUniverse/j3d1x2-flat @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x2-flat 1.2 01/10/29 15:44:19 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x2-rot30 b/src/ConfiguredUniverse/j3d1x2-rot30 index 68f4a6e..8ab4436 100644 --- a/src/ConfiguredUniverse/j3d1x2-rot30 +++ b/src/ConfiguredUniverse/j3d1x2-rot30 @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x2-rot30 1.1 01/10/19 20:24:29 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x3-cave b/src/ConfiguredUniverse/j3d1x3-cave index afc532c..d9a1472 100644 --- a/src/ConfiguredUniverse/j3d1x3-cave +++ b/src/ConfiguredUniverse/j3d1x3-cave @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x3-cave 1.3 01/10/29 18:35:26 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x3-cave-vr b/src/ConfiguredUniverse/j3d1x3-cave-vr index 029decf..cd892a0 100644 --- a/src/ConfiguredUniverse/j3d1x3-cave-vr +++ b/src/ConfiguredUniverse/j3d1x3-cave-vr @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x3-cave-vr 1.3 01/10/29 18:34:16 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d1x3-rot45 b/src/ConfiguredUniverse/j3d1x3-rot45 index d221e74..de44c81 100644 --- a/src/ConfiguredUniverse/j3d1x3-rot45 +++ b/src/ConfiguredUniverse/j3d1x3-rot45 @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d1x3-rot45 1.1 01/10/19 20:24:38 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConfiguredUniverse/j3d2x2-flat b/src/ConfiguredUniverse/j3d2x2-flat index 46df9a3..b5bc83f 100644 --- a/src/ConfiguredUniverse/j3d2x2-flat +++ b/src/ConfiguredUniverse/j3d2x2-flat @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)j3d2x2-flat 1.2 01/10/29 15:47:10 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ /* diff --git a/src/ConicWorld/ConicWorld.java b/src/ConicWorld/ConicWorld.java index 2af4b3d..2422a6d 100644 --- a/src/ConicWorld/ConicWorld.java +++ b/src/ConicWorld/ConicWorld.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ConicWorld/build.xml b/src/ConicWorld/build.xml index 4e57328..47e5a36 100644 --- a/src/ConicWorld/build.xml +++ b/src/ConicWorld/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/DepthFuncTest/DepthFuncTest.java b/src/DepthFuncTest/DepthFuncTest.java index 1589754..b053857 100644 --- a/src/DepthFuncTest/DepthFuncTest.java +++ b/src/DepthFuncTest/DepthFuncTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/DepthFuncTest/RenderFrame.java b/src/DepthFuncTest/RenderFrame.java index 70945eb..b56e332 100644 --- a/src/DepthFuncTest/RenderFrame.java +++ b/src/DepthFuncTest/RenderFrame.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/DepthFuncTest/build.xml b/src/DepthFuncTest/build.xml index 4e57328..47e5a36 100644 --- a/src/DepthFuncTest/build.xml +++ b/src/DepthFuncTest/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/DistortGlyph/DistortBehavior.java b/src/DistortGlyph/DistortBehavior.java index e4f0d59..98f20cf 100644 --- a/src/DistortGlyph/DistortBehavior.java +++ b/src/DistortGlyph/DistortBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/DistortGlyph/DistortGlyphTest.java b/src/DistortGlyph/DistortGlyphTest.java index fd9c590..2e024b8 100644 --- a/src/DistortGlyph/DistortGlyphTest.java +++ b/src/DistortGlyph/DistortGlyphTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/DistortGlyph/build.xml b/src/DistortGlyph/build.xml index 4e57328..47e5a36 100644 --- a/src/DistortGlyph/build.xml +++ b/src/DistortGlyph/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FPSCounter/FPSCounter.java b/src/FPSCounter/FPSCounter.java index 17e7f35..10953eb 100644 --- a/src/FPSCounter/FPSCounter.java +++ b/src/FPSCounter/FPSCounter.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FPSCounter/FPSCounterDemo.java b/src/FPSCounter/FPSCounterDemo.java index 6967741..27109de 100644 --- a/src/FPSCounter/FPSCounterDemo.java +++ b/src/FPSCounter/FPSCounterDemo.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FPSCounter/build.xml b/src/FPSCounter/build.xml index 4e57328..47e5a36 100644 --- a/src/FPSCounter/build.xml +++ b/src/FPSCounter/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/BigCube.java b/src/FourByFour/BigCube.java index dbd304e..8c2ae32 100644 --- a/src/FourByFour/BigCube.java +++ b/src/FourByFour/BigCube.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -54,6 +54,8 @@ import javax.vecmath.*; * position. * * Version: 1.0 + * + * Copyright (C) 1998 Sun Microsystems, Inc. All Rights Reserved. */ public class BigCube extends Object { diff --git a/src/FourByFour/Board.java b/src/FourByFour/Board.java index b4d29c9..c3cc0a4 100644 --- a/src/FourByFour/Board.java +++ b/src/FourByFour/Board.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/Canvas2D.java b/src/FourByFour/Canvas2D.java index 033be15..41c990c 100644 --- a/src/FourByFour/Canvas2D.java +++ b/src/FourByFour/Canvas2D.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/Cube.java b/src/FourByFour/Cube.java index b12ec46..f8fd3bd 100644 --- a/src/FourByFour/Cube.java +++ b/src/FourByFour/Cube.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/Cylinder.java b/src/FourByFour/Cylinder.java index c647087..b2d616f 100644 --- a/src/FourByFour/Cylinder.java +++ b/src/FourByFour/Cylinder.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/FourByFour.java b/src/FourByFour/FourByFour.java index 4e368cd..0a58a1e 100644 --- a/src/FourByFour/FourByFour.java +++ b/src/FourByFour/FourByFour.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/ID.java b/src/FourByFour/ID.java index 0ca8cf9..dae658e 100644 --- a/src/FourByFour/ID.java +++ b/src/FourByFour/ID.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/PickDragBehavior.java b/src/FourByFour/PickDragBehavior.java index 7645af9..67bee6e 100644 --- a/src/FourByFour/PickDragBehavior.java +++ b/src/FourByFour/PickDragBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/Poles.java b/src/FourByFour/Poles.java index b875b4b..135604a 100644 --- a/src/FourByFour/Poles.java +++ b/src/FourByFour/Poles.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/Positions.java b/src/FourByFour/Positions.java index 5a61b93..2a9f396 100644 --- a/src/FourByFour/Positions.java +++ b/src/FourByFour/Positions.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/README b/src/FourByFour/README index 6d0e046..8ae0695 100644 --- a/src/FourByFour/README +++ b/src/FourByFour/README @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)README 1.6 01/06/20 16:18:05 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. - * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + * + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ FourByFour diff --git a/src/FourByFour/build.xml b/src/FourByFour/build.xml index 4e57328..47e5a36 100644 --- a/src/FourByFour/build.xml +++ b/src/FourByFour/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/FourByFour/instructions.txt b/src/FourByFour/instructions.txt index 36ded73..f90f3c2 100644 --- a/src/FourByFour/instructions.txt +++ b/src/FourByFour/instructions.txt @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)instructions.txt 1.5 01/06/20 16:18:06 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ Four By Four diff --git a/src/GLSLShaderTest/ObjLoadGLSL.java b/src/GLSLShaderTest/ObjLoadGLSL.java index 3c67b98..993aebf 100644 --- a/src/GLSLShaderTest/ObjLoadGLSL.java +++ b/src/GLSLShaderTest/ObjLoadGLSL.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GLSLShaderTest/ShaderTestGLSL.java b/src/GLSLShaderTest/ShaderTestGLSL.java index b96ea42..b55650d 100644 --- a/src/GLSLShaderTest/ShaderTestGLSL.java +++ b/src/GLSLShaderTest/ShaderTestGLSL.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GLSLShaderTest/SphereGLSL.java b/src/GLSLShaderTest/SphereGLSL.java index a9f6447..a96dca6 100644 --- a/src/GLSLShaderTest/SphereGLSL.java +++ b/src/GLSLShaderTest/SphereGLSL.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -156,6 +156,7 @@ public class SphereGLSL extends Applet { TransformGroup l2Trans = new TransformGroup(t); l2RotTrans.addChild(l2Trans); + /* // Create Geometry for point lights ColoringAttributes caL1 = new ColoringAttributes(); ColoringAttributes caL2 = new ColoringAttributes(); @@ -167,6 +168,7 @@ public class SphereGLSL extends Applet { appL2.setColoringAttributes(caL2); l1Trans.addChild(new Sphere(0.05f, appL1)); l2Trans.addChild(new Sphere(0.05f, appL2)); + */ // Create lights AmbientLight aLgt = new AmbientLight(alColor); diff --git a/src/GLSLShaderTest/build.xml b/src/GLSLShaderTest/build.xml index 4e57328..47e5a36 100644 --- a/src/GLSLShaderTest/build.xml +++ b/src/GLSLShaderTest/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GLSLShaderTest/simple.frag b/src/GLSLShaderTest/simple.frag index 6542b34..61c83ec 100644 --- a/src/GLSLShaderTest/simple.frag +++ b/src/GLSLShaderTest/simple.frag @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GLSLShaderTest/simple.vert b/src/GLSLShaderTest/simple.vert index 7d3e152..c593816 100644 --- a/src/GLSLShaderTest/simple.vert +++ b/src/GLSLShaderTest/simple.vert @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GearTest/Gear.java b/src/GearTest/Gear.java index 3a96325..419d795 100644 --- a/src/GearTest/Gear.java +++ b/src/GearTest/Gear.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GearTest/GearBox.java b/src/GearTest/GearBox.java index ab946e6..be9ab6f 100644 --- a/src/GearTest/GearBox.java +++ b/src/GearTest/GearBox.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GearTest/GearTest.java b/src/GearTest/GearTest.java index 9fd46fe..112fbe4 100644 --- a/src/GearTest/GearTest.java +++ b/src/GearTest/GearTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GearTest/Shaft.java b/src/GearTest/Shaft.java index f596d2a..77f7f46 100644 --- a/src/GearTest/Shaft.java +++ b/src/GearTest/Shaft.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GearTest/SpurGear.java b/src/GearTest/SpurGear.java index 943d1e5..1dd2201 100644 --- a/src/GearTest/SpurGear.java +++ b/src/GearTest/SpurGear.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GearTest/SpurGearThinBody.java b/src/GearTest/SpurGearThinBody.java index d2ead3d..c598fce 100644 --- a/src/GearTest/SpurGearThinBody.java +++ b/src/GearTest/SpurGearThinBody.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GearTest/build.xml b/src/GearTest/build.xml index 4e57328..47e5a36 100644 --- a/src/GearTest/build.xml +++ b/src/GearTest/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryByReference/GeometryByReferenceNIOBuffer.java b/src/GeometryByReference/GeometryByReferenceNIOBuffer.java index b3a9274..5518491 100644 --- a/src/GeometryByReference/GeometryByReferenceNIOBuffer.java +++ b/src/GeometryByReference/GeometryByReferenceNIOBuffer.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryByReference/GeometryByReferenceTest.java b/src/GeometryByReference/GeometryByReferenceTest.java index 430aedb..2c4a6f7 100644 --- a/src/GeometryByReference/GeometryByReferenceTest.java +++ b/src/GeometryByReference/GeometryByReferenceTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryByReference/ImageComponentByReferenceTest.java b/src/GeometryByReference/ImageComponentByReferenceTest.java index 56ba367..24f20f8 100644 --- a/src/GeometryByReference/ImageComponentByReferenceTest.java +++ b/src/GeometryByReference/ImageComponentByReferenceTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryByReference/InterleavedNIOBuffer.java b/src/GeometryByReference/InterleavedNIOBuffer.java index 816f8ae..a66b11d 100644 --- a/src/GeometryByReference/InterleavedNIOBuffer.java +++ b/src/GeometryByReference/InterleavedNIOBuffer.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryByReference/InterleavedTest.java b/src/GeometryByReference/InterleavedTest.java index 29ec5ee..c65906d 100644 --- a/src/GeometryByReference/InterleavedTest.java +++ b/src/GeometryByReference/InterleavedTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryByReference/TiledImage.java b/src/GeometryByReference/TiledImage.java index 9294997..bd9e469 100644 --- a/src/GeometryByReference/TiledImage.java +++ b/src/GeometryByReference/TiledImage.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryByReference/build.xml b/src/GeometryByReference/build.xml index 4e57328..47e5a36 100644 --- a/src/GeometryByReference/build.xml +++ b/src/GeometryByReference/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryCompression/ObjectFileCompressor.java b/src/GeometryCompression/ObjectFileCompressor.java index 9b99d24..dcd1bc1 100644 --- a/src/GeometryCompression/ObjectFileCompressor.java +++ b/src/GeometryCompression/ObjectFileCompressor.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryCompression/README b/src/GeometryCompression/README index 45a20c6..23611dc 100644 --- a/src/GeometryCompression/README +++ b/src/GeometryCompression/README @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)README 1.4 01/06/20 16:18:13 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. - * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + * + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ This directory contains example code for using compressed geometry in diff --git a/src/GeometryCompression/build.xml b/src/GeometryCompression/build.xml index 4e57328..47e5a36 100644 --- a/src/GeometryCompression/build.xml +++ b/src/GeometryCompression/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryCompression/cgview.java b/src/GeometryCompression/cgview.java index b3840a8..60da3f3 100644 --- a/src/GeometryCompression/cgview.java +++ b/src/GeometryCompression/cgview.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/GeometryCompression/obj2cg.java b/src/GeometryCompression/obj2cg.java index 45ab1c6..ef231f3 100644 --- a/src/GeometryCompression/obj2cg.java +++ b/src/GeometryCompression/obj2cg.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/HelloUniverse/HelloUniverse.html b/src/HelloUniverse/HelloUniverse.html new file mode 100644 index 0000000..93b044c --- /dev/null +++ b/src/HelloUniverse/HelloUniverse.html @@ -0,0 +1,15 @@ +<HTML> +<HEAD> +<TITLE>Hello, Universe!</TITLE> +</HEAD> +<BODY BGCOLOR="#000000"> +<applet align=middle code="HelloUniverse.class" width=256 height=256> +<blockquote> +<hr> +If you were using a Java-capable browser, +you would see Hello Universe! instead of this paragraph. +<hr> +</blockquote> +</applet> +</BODY> +</HTML> diff --git a/src/HelloUniverse/HelloUniverse.java b/src/HelloUniverse/HelloUniverse.java index de8f783..7616a88 100644 --- a/src/HelloUniverse/HelloUniverse.java +++ b/src/HelloUniverse/HelloUniverse.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions @@ -42,20 +42,20 @@ * $State$ */ -import com.sun.j3d.utils.universe.*; +import java.applet.Applet; +import java.awt.BorderLayout; +import java.awt.event.*; +import java.awt.GraphicsConfiguration; +import com.sun.j3d.utils.applet.MainFrame; import com.sun.j3d.utils.geometry.ColorCube; +import com.sun.j3d.utils.universe.*; import javax.media.j3d.*; import javax.vecmath.*; -import java.awt.GraphicsConfiguration; -/** - * Simple Java 3D example program to display a spinning cube. - */ -public class HelloUniverse extends javax.swing.JFrame { - - private SimpleUniverse univ = null; - private BranchGroup scene = null; +public class HelloUniverse extends Applet { + private SimpleUniverse u = null; + public BranchGroup createSceneGraph() { // Create the root of the branch graph BranchGroup objRoot = new BranchGroup(); @@ -91,77 +91,37 @@ public class HelloUniverse extends javax.swing.JFrame { return objRoot; } - private Canvas3D createUniverse() { - // Get the preferred graphics configuration for the default screen - GraphicsConfiguration config = - SimpleUniverse.getPreferredConfiguration(); + public HelloUniverse() { + } + + public void init() { + setLayout(new BorderLayout()); + GraphicsConfiguration config = + SimpleUniverse.getPreferredConfiguration(); - // Create a Canvas3D using the preferred configuration Canvas3D c = new Canvas3D(config); + add("Center", c); - // Create simple universe with view branch - univ = new SimpleUniverse(c); - - // This will move the ViewPlatform back a bit so the - // objects in the scene can be viewed. - univ.getViewingPlatform().setNominalViewingTransform(); + // Create a simple scene and attach it to the virtual universe + BranchGroup scene = createSceneGraph(); + u = new SimpleUniverse(c); - // Ensure at least 5 msec per frame (i.e., < 200Hz) - univ.getViewer().getView().setMinimumFrameCycleTime(5); + // This will move the ViewPlatform back a bit so the + // objects in the scene can be viewed. + u.getViewingPlatform().setNominalViewingTransform(); - return c; + u.addBranchGraph(scene); } - /** - * Creates new form HelloUniverse - */ - public HelloUniverse() { - // Initialize the GUI components - initComponents(); - - // Create Canvas3D and SimpleUniverse; add canvas to drawing panel - Canvas3D c = createUniverse(); - drawingPanel.add(c, java.awt.BorderLayout.CENTER); - - // Create the content branch and add it to the universe - scene = createSceneGraph(); - univ.addBranchGraph(scene); + public void destroy() { + u.cleanup(); } - // ---------------------------------------------------------------- - - /** This method is called from within the constructor to - * initialize the form. - * WARNING: Do NOT modify this code. The content of this method is - * always regenerated by the Form Editor. - */ - // <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents - private void initComponents() { - drawingPanel = new javax.swing.JPanel(); - - setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE); - setTitle("HelloUniverse"); - drawingPanel.setLayout(new java.awt.BorderLayout()); - - drawingPanel.setPreferredSize(new java.awt.Dimension(250, 250)); - getContentPane().add(drawingPanel, java.awt.BorderLayout.CENTER); - - pack(); - }// </editor-fold>//GEN-END:initComponents - - /** - * @param args the command line arguments - */ - public static void main(String args[]) { - java.awt.EventQueue.invokeLater(new Runnable() { - public void run() { - new HelloUniverse().setVisible(true); - } - }); + // + // The following allows HelloUniverse to be run as an application + // as well as an applet + // + public static void main(String[] args) { + new MainFrame(new HelloUniverse(), 256, 256); } - - // Variables declaration - do not modify//GEN-BEGIN:variables - private javax.swing.JPanel drawingPanel; - // End of variables declaration//GEN-END:variables - } diff --git a/src/HelloUniverse/HelloUniverse_plugin.html b/src/HelloUniverse/HelloUniverse_plugin.html new file mode 100644 index 0000000..947a59b --- /dev/null +++ b/src/HelloUniverse/HelloUniverse_plugin.html @@ -0,0 +1,39 @@ +<HTML> +<HEAD> +<TITLE>Hello, Universe!</TITLE> +</HEAD> +<BODY BGCOLOR="#000000"> +<!--"CONVERTED_APPLET"--> +<!-- CONVERTER VERSION 1.3 --> +<OBJECT classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" +WIDTH = 256 HEIGHT = 256 ALIGN = middle codebase="http://java.sun.com/products/plugin/1.3/jinstall-13-win32.cab#Version=1,3,0,0"> +<PARAM NAME = CODE VALUE = "HelloUniverse.class" > + +<PARAM NAME="type" VALUE="application/x-java-applet;version=1.2.2"> +<PARAM NAME="scriptable" VALUE="false"> +<COMMENT> +<EMBED type="application/x-java-applet;version=1.2.2" CODE = "HelloUniverse.class" WIDTH = 256 HEIGHT = 256 ALIGN = middle scriptable=false pluginspage="http://java.sun.com/products/plugin/1.3/plugin-install.html"><NOEMBED></COMMENT> +<blockquote> +<hr> +If you were using a Java-capable browser, +you would see Hello Universe! instead of this paragraph. +<hr> +</blockquote> +</NOEMBED></EMBED> +</OBJECT> + +<!-- +<APPLET CODE = "HelloUniverse.class" WIDTH = 256 HEIGHT = 256 ALIGN = middle> +<blockquote> +<hr> +If you were using a Java-capable browser, +you would see Hello Universe! instead of this paragraph. +<hr> +</blockquote> + +</APPLET> +--> +<!--"END_CONVERTED_APPLET"--> + +</BODY> +</HTML> diff --git a/src/HelloUniverse/build.xml b/src/HelloUniverse/build.xml index 4e57328..47e5a36 100644 --- a/src/HelloUniverse/build.xml +++ b/src/HelloUniverse/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/LOD/LOD.java b/src/LOD/LOD.java index dcceac4..74ada7d 100644 --- a/src/LOD/LOD.java +++ b/src/LOD/LOD.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/LOD/build.xml b/src/LOD/build.xml index 4e57328..47e5a36 100644 --- a/src/LOD/build.xml +++ b/src/LOD/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Lightwave/README.txt b/src/Lightwave/README.txt index c37f4d9..7a65e82 100644 --- a/src/Lightwave/README.txt +++ b/src/Lightwave/README.txt @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)README.txt 1.5 01/06/20 16:18:15 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ Release Notes for the Lightwave 3D Java3D Loader diff --git a/src/Lightwave/Viewer.java b/src/Lightwave/Viewer.java index 25a6c56..834bd27 100644 --- a/src/Lightwave/Viewer.java +++ b/src/Lightwave/Viewer.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Lightwave/build.xml b/src/Lightwave/build.xml index 4e57328..47e5a36 100644 --- a/src/Lightwave/build.xml +++ b/src/Lightwave/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ModelClip/ModelClipTest.java b/src/ModelClip/ModelClipTest.java index fda0380..0395b87 100644 --- a/src/ModelClip/ModelClipTest.java +++ b/src/ModelClip/ModelClipTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ModelClip/ModelClipTest2.java b/src/ModelClip/ModelClipTest2.java index 7ba177f..4558ff6 100644 --- a/src/ModelClip/ModelClipTest2.java +++ b/src/ModelClip/ModelClipTest2.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ModelClip/build.xml b/src/ModelClip/build.xml index 4e57328..47e5a36 100644 --- a/src/ModelClip/build.xml +++ b/src/ModelClip/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Morphing/ColorCube.java b/src/Morphing/ColorCube.java index ff52c48..c61644d 100644 --- a/src/Morphing/ColorCube.java +++ b/src/Morphing/ColorCube.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Morphing/ColorPyramidDown.java b/src/Morphing/ColorPyramidDown.java index 80a572d..96c8f09 100644 --- a/src/Morphing/ColorPyramidDown.java +++ b/src/Morphing/ColorPyramidDown.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Morphing/ColorPyramidUp.java b/src/Morphing/ColorPyramidUp.java index e952fe2..b43ddd9 100644 --- a/src/Morphing/ColorPyramidUp.java +++ b/src/Morphing/ColorPyramidUp.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Morphing/Morphing.java b/src/Morphing/Morphing.java index 3811b07..182ac87 100644 --- a/src/Morphing/Morphing.java +++ b/src/Morphing/Morphing.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Morphing/MorphingBehavior.java b/src/Morphing/MorphingBehavior.java index 5da6eeb..3780fac 100644 --- a/src/Morphing/MorphingBehavior.java +++ b/src/Morphing/MorphingBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Morphing/Pyramid2Cube.java b/src/Morphing/Pyramid2Cube.java index 904d1dd..a9da9ce 100644 --- a/src/Morphing/Pyramid2Cube.java +++ b/src/Morphing/Pyramid2Cube.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Morphing/build.xml b/src/Morphing/build.xml index 4e57328..47e5a36 100644 --- a/src/Morphing/build.xml +++ b/src/Morphing/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ObjLoad/ObjLoad.java b/src/ObjLoad/ObjLoad.java index 3619be5..ac5cad1 100644 --- a/src/ObjLoad/ObjLoad.java +++ b/src/ObjLoad/ObjLoad.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ObjLoad/build.xml b/src/ObjLoad/build.xml index 4e57328..47e5a36 100644 --- a/src/ObjLoad/build.xml +++ b/src/ObjLoad/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OffScreenCanvas3D/OffScreenCanvas3D.java b/src/OffScreenCanvas3D/OffScreenCanvas3D.java index 733efa0..9b9401f 100644 --- a/src/OffScreenCanvas3D/OffScreenCanvas3D.java +++ b/src/OffScreenCanvas3D/OffScreenCanvas3D.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OffScreenCanvas3D/OffScreenTest.java b/src/OffScreenCanvas3D/OffScreenTest.java index f4070d8..0f503ce 100644 --- a/src/OffScreenCanvas3D/OffScreenTest.java +++ b/src/OffScreenCanvas3D/OffScreenTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OffScreenCanvas3D/OnScreenCanvas3D.java b/src/OffScreenCanvas3D/OnScreenCanvas3D.java index 92c9171..fe1dadf 100644 --- a/src/OffScreenCanvas3D/OnScreenCanvas3D.java +++ b/src/OffScreenCanvas3D/OnScreenCanvas3D.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OffScreenCanvas3D/PrintFromButton.java b/src/OffScreenCanvas3D/PrintFromButton.java index 7bf0207..9a22260 100644 --- a/src/OffScreenCanvas3D/PrintFromButton.java +++ b/src/OffScreenCanvas3D/PrintFromButton.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OffScreenCanvas3D/build.xml b/src/OffScreenCanvas3D/build.xml index 4e57328..47e5a36 100644 --- a/src/OffScreenCanvas3D/build.xml +++ b/src/OffScreenCanvas3D/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OrientedShape3D/MouseRotateY.java b/src/OrientedShape3D/MouseRotateY.java index d02b345..cfe5a75 100644 --- a/src/OrientedShape3D/MouseRotateY.java +++ b/src/OrientedShape3D/MouseRotateY.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OrientedShape3D/OrientedPtTest.java b/src/OrientedShape3D/OrientedPtTest.java index f753a04..d3e04f6 100644 --- a/src/OrientedShape3D/OrientedPtTest.java +++ b/src/OrientedShape3D/OrientedPtTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OrientedShape3D/OrientedTest.java b/src/OrientedShape3D/OrientedTest.java index 446cfcf..eeb95f2 100644 --- a/src/OrientedShape3D/OrientedTest.java +++ b/src/OrientedShape3D/OrientedTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/OrientedShape3D/build.xml b/src/OrientedShape3D/build.xml index 4e57328..47e5a36 100644 --- a/src/OrientedShape3D/build.xml +++ b/src/OrientedShape3D/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PackageInfo/PackageInfo.java b/src/PackageInfo/PackageInfo.java index 1fda583..aab8c03 100644 --- a/src/PackageInfo/PackageInfo.java +++ b/src/PackageInfo/PackageInfo.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PackageInfo/QueryProperties.java b/src/PackageInfo/QueryProperties.java index 0b39c3a..3be59f0 100644 --- a/src/PackageInfo/QueryProperties.java +++ b/src/PackageInfo/QueryProperties.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PackageInfo/build.xml b/src/PackageInfo/build.xml index 4e57328..47e5a36 100644 --- a/src/PackageInfo/build.xml +++ b/src/PackageInfo/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/BoltCG.java b/src/PickTest/BoltCG.java index 78255ac..6f98e30 100644 --- a/src/PickTest/BoltCG.java +++ b/src/PickTest/BoltCG.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/ColorCube.java b/src/PickTest/ColorCube.java index ff52c48..c61644d 100644 --- a/src/PickTest/ColorCube.java +++ b/src/PickTest/ColorCube.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/ColorPyramidDown.java b/src/PickTest/ColorPyramidDown.java index 80a572d..96c8f09 100644 --- a/src/PickTest/ColorPyramidDown.java +++ b/src/PickTest/ColorPyramidDown.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/ColorPyramidUp.java b/src/PickTest/ColorPyramidUp.java index e952fe2..b43ddd9 100644 --- a/src/PickTest/ColorPyramidUp.java +++ b/src/PickTest/ColorPyramidUp.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/CubeIQA.java b/src/PickTest/CubeIQA.java index cbeadc5..8f63f36 100644 --- a/src/PickTest/CubeIQA.java +++ b/src/PickTest/CubeIQA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/CubeQA.java b/src/PickTest/CubeQA.java index 5e1f78f..838a57e 100644 --- a/src/PickTest/CubeQA.java +++ b/src/PickTest/CubeQA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/GullCG.java b/src/PickTest/GullCG.java index c53283a..9cd3cd7 100644 --- a/src/PickTest/GullCG.java +++ b/src/PickTest/GullCG.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/IcosahedronITSA.java b/src/PickTest/IcosahedronITSA.java index e25178f..e55a42a 100644 --- a/src/PickTest/IcosahedronITSA.java +++ b/src/PickTest/IcosahedronITSA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/IcosahedronTSA.java b/src/PickTest/IcosahedronTSA.java index 83fb687..83d6f0c 100644 --- a/src/PickTest/IcosahedronTSA.java +++ b/src/PickTest/IcosahedronTSA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/IntersectInfoBehavior.java b/src/PickTest/IntersectInfoBehavior.java index e0cdb2c..d583cc2 100644 --- a/src/PickTest/IntersectInfoBehavior.java +++ b/src/PickTest/IntersectInfoBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/IntersectTest.java b/src/PickTest/IntersectTest.java index 891b511..ef27f7a 100644 --- a/src/PickTest/IntersectTest.java +++ b/src/PickTest/IntersectTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/MorphingBehavior.java b/src/PickTest/MorphingBehavior.java index 5da6eeb..3780fac 100644 --- a/src/PickTest/MorphingBehavior.java +++ b/src/PickTest/MorphingBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/OctahedronITFA.java b/src/PickTest/OctahedronITFA.java index cdc4dc5..0ddc789 100644 --- a/src/PickTest/OctahedronITFA.java +++ b/src/PickTest/OctahedronITFA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/OctahedronTFA.java b/src/PickTest/OctahedronTFA.java index f1b2e0d..ef7e376 100644 --- a/src/PickTest/OctahedronTFA.java +++ b/src/PickTest/OctahedronTFA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/PickTest.java b/src/PickTest/PickTest.java index 5b50d98..802b1d4 100644 --- a/src/PickTest/PickTest.java +++ b/src/PickTest/PickTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/RandomColorCube.java b/src/PickTest/RandomColorCube.java index 12a43b0..77ac9f7 100644 --- a/src/PickTest/RandomColorCube.java +++ b/src/PickTest/RandomColorCube.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/RandomColorTetrahedron.java b/src/PickTest/RandomColorTetrahedron.java index 3454d24..c1e7ead 100644 --- a/src/PickTest/RandomColorTetrahedron.java +++ b/src/PickTest/RandomColorTetrahedron.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronILA.java b/src/PickTest/TetrahedronILA.java index 1a6b9bc..18d16bd 100644 --- a/src/PickTest/TetrahedronILA.java +++ b/src/PickTest/TetrahedronILA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronILSA.java b/src/PickTest/TetrahedronILSA.java index b982cdc..da516a9 100644 --- a/src/PickTest/TetrahedronILSA.java +++ b/src/PickTest/TetrahedronILSA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronIPA.java b/src/PickTest/TetrahedronIPA.java index 5400b0c..0d2047c 100644 --- a/src/PickTest/TetrahedronIPA.java +++ b/src/PickTest/TetrahedronIPA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronITA.java b/src/PickTest/TetrahedronITA.java index 4679ca8..0013c0f 100644 --- a/src/PickTest/TetrahedronITA.java +++ b/src/PickTest/TetrahedronITA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronLA.java b/src/PickTest/TetrahedronLA.java index 3d67009..4eef7cc 100644 --- a/src/PickTest/TetrahedronLA.java +++ b/src/PickTest/TetrahedronLA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronLSA.java b/src/PickTest/TetrahedronLSA.java index 3c375ca..29b189b 100644 --- a/src/PickTest/TetrahedronLSA.java +++ b/src/PickTest/TetrahedronLSA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronPA.java b/src/PickTest/TetrahedronPA.java index 665a886..0ffb7b9 100644 --- a/src/PickTest/TetrahedronPA.java +++ b/src/PickTest/TetrahedronPA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/TetrahedronTA.java b/src/PickTest/TetrahedronTA.java index b981f62..7887380 100644 --- a/src/PickTest/TetrahedronTA.java +++ b/src/PickTest/TetrahedronTA.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickTest/build.xml b/src/PickTest/build.xml index 4e57328..47e5a36 100644 --- a/src/PickTest/build.xml +++ b/src/PickTest/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickText3D/PickText3DBounds.java b/src/PickText3D/PickText3DBounds.java index 32c5ba3..1746883 100644 --- a/src/PickText3D/PickText3DBounds.java +++ b/src/PickText3D/PickText3DBounds.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickText3D/PickText3DGeometry.java b/src/PickText3D/PickText3DGeometry.java index d35131d..a4203b9 100644 --- a/src/PickText3D/PickText3DGeometry.java +++ b/src/PickText3D/PickText3DGeometry.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PickText3D/build.xml b/src/PickText3D/build.xml index 4e57328..47e5a36 100644 --- a/src/PickText3D/build.xml +++ b/src/PickText3D/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PlatformGeometry/SimpleGeometry.java b/src/PlatformGeometry/SimpleGeometry.java index 0f2f562..0bd177f 100644 --- a/src/PlatformGeometry/SimpleGeometry.java +++ b/src/PlatformGeometry/SimpleGeometry.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PlatformGeometry/build.xml b/src/PlatformGeometry/build.xml index 4e57328..47e5a36 100644 --- a/src/PlatformGeometry/build.xml +++ b/src/PlatformGeometry/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PrintCanvas3D/ImageDisplayer.java b/src/PrintCanvas3D/ImageDisplayer.java index 6a9bb61..f2f950a 100644 --- a/src/PrintCanvas3D/ImageDisplayer.java +++ b/src/PrintCanvas3D/ImageDisplayer.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PrintCanvas3D/ImagePrinter.java b/src/PrintCanvas3D/ImagePrinter.java index 211883d..247cb1e 100644 --- a/src/PrintCanvas3D/ImagePrinter.java +++ b/src/PrintCanvas3D/ImagePrinter.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PrintCanvas3D/OffScreenCanvas3D.java b/src/PrintCanvas3D/OffScreenCanvas3D.java index b089e5c..bc7a357 100644 --- a/src/PrintCanvas3D/OffScreenCanvas3D.java +++ b/src/PrintCanvas3D/OffScreenCanvas3D.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PrintCanvas3D/PrintCanvas3D.java b/src/PrintCanvas3D/PrintCanvas3D.java index 87ff679..75e3749 100644 --- a/src/PrintCanvas3D/PrintCanvas3D.java +++ b/src/PrintCanvas3D/PrintCanvas3D.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PrintCanvas3D/build.xml b/src/PrintCanvas3D/build.xml index 4e57328..47e5a36 100644 --- a/src/PrintCanvas3D/build.xml +++ b/src/PrintCanvas3D/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PureImmediate/PureImmediate.java b/src/PureImmediate/PureImmediate.java index 6f3bb28..5ac8f5a 100644 --- a/src/PureImmediate/PureImmediate.java +++ b/src/PureImmediate/PureImmediate.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PureImmediate/PureImmediateStereo.java b/src/PureImmediate/PureImmediateStereo.java index a15a7c1..94342d2 100644 --- a/src/PureImmediate/PureImmediateStereo.java +++ b/src/PureImmediate/PureImmediateStereo.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/PureImmediate/build.xml b/src/PureImmediate/build.xml index 4e57328..47e5a36 100644 --- a/src/PureImmediate/build.xml +++ b/src/PureImmediate/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ReadRaster/ReadRaster.java b/src/ReadRaster/ReadRaster.java index 49c73f6..871befb 100644 --- a/src/ReadRaster/ReadRaster.java +++ b/src/ReadRaster/ReadRaster.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/ReadRaster/build.xml b/src/ReadRaster/build.xml index 4e57328..47e5a36 100644 --- a/src/ReadRaster/build.xml +++ b/src/ReadRaster/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/SgChangerListener/ListenerTest.java b/src/SgChangerListener/ListenerTest.java index e50d719..740ec74 100644 --- a/src/SgChangerListener/ListenerTest.java +++ b/src/SgChangerListener/ListenerTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/SgChangerListener/build.xml b/src/SgChangerListener/build.xml index 4e57328..47e5a36 100644 --- a/src/SgChangerListener/build.xml +++ b/src/SgChangerListener/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Sound/AudioBehaviorMoveOne.java b/src/Sound/AudioBehaviorMoveOne.java index b447ee2..3254251 100644 --- a/src/Sound/AudioBehaviorMoveOne.java +++ b/src/Sound/AudioBehaviorMoveOne.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Sound/AudioReverberate.java b/src/Sound/AudioReverberate.java index 9d599c1..a5dc382 100644 --- a/src/Sound/AudioReverberate.java +++ b/src/Sound/AudioReverberate.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Sound/MoveAppBoundingLeaf.java b/src/Sound/MoveAppBoundingLeaf.java index 423c956..b4ca59f 100644 --- a/src/Sound/MoveAppBoundingLeaf.java +++ b/src/Sound/MoveAppBoundingLeaf.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Sound/README.release b/src/Sound/README.release index bbbc20b..25a8045 100644 --- a/src/Sound/README.release +++ b/src/Sound/README.release @@ -1,11 +1,7 @@ /* - * $RCSfile$ + * @(#)README.release 1.7 01/10/14 09:42:38 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. - * - * $Revision$ - * $Date$ - * $State$ + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. */ ========================================================================== diff --git a/src/Sound/ReverberateSound.java b/src/Sound/ReverberateSound.java index dbe1aa5..bef45a1 100644 --- a/src/Sound/ReverberateSound.java +++ b/src/Sound/ReverberateSound.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Sound/SimpleSounds.java b/src/Sound/SimpleSounds.java index 6113a28..c6c385c 100644 --- a/src/Sound/SimpleSounds.java +++ b/src/Sound/SimpleSounds.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Sound/SimpleSoundsBehavior.java b/src/Sound/SimpleSoundsBehavior.java index 22ff9f5..a1371f3 100644 --- a/src/Sound/SimpleSoundsBehavior.java +++ b/src/Sound/SimpleSoundsBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Sound/build.xml b/src/Sound/build.xml index 4e57328..47e5a36 100644 --- a/src/Sound/build.xml +++ b/src/Sound/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/SphereMotion/SphereMotion.java b/src/SphereMotion/SphereMotion.java index a2ac065..8b976bc 100644 --- a/src/SphereMotion/SphereMotion.java +++ b/src/SphereMotion/SphereMotion.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/SphereMotion/build.xml b/src/SphereMotion/build.xml index 4e57328..47e5a36 100644 --- a/src/SphereMotion/build.xml +++ b/src/SphereMotion/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/SplineAnim/SplineAnim.java b/src/SplineAnim/SplineAnim.java index c106903..b89b880 100644 --- a/src/SplineAnim/SplineAnim.java +++ b/src/SplineAnim/SplineAnim.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/SplineAnim/build.xml b/src/SplineAnim/build.xml index 4e57328..47e5a36 100644 --- a/src/SplineAnim/build.xml +++ b/src/SplineAnim/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Text2D/MoverBehavior.java b/src/Text2D/MoverBehavior.java index 752ac9c..8e423f9 100644 --- a/src/Text2D/MoverBehavior.java +++ b/src/Text2D/MoverBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Text2D/Text2DTest.java b/src/Text2D/Text2DTest.java index 7815df9..6b8c0c5 100644 --- a/src/Text2D/Text2DTest.java +++ b/src/Text2D/Text2DTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Text2D/build.xml b/src/Text2D/build.xml index 4e57328..47e5a36 100644 --- a/src/Text2D/build.xml +++ b/src/Text2D/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Text3D/Text3DLoad.java b/src/Text3D/Text3DLoad.java index 453b4ce..0d7ad3e 100644 --- a/src/Text3D/Text3DLoad.java +++ b/src/Text3D/Text3DLoad.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Text3D/build.xml b/src/Text3D/build.xml index 4e57328..47e5a36 100644 --- a/src/Text3D/build.xml +++ b/src/Text3D/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureByReference/AnimateTexturesBehavior.java b/src/TextureByReference/AnimateTexturesBehavior.java index a580ba2..f8889c6 100644 --- a/src/TextureByReference/AnimateTexturesBehavior.java +++ b/src/TextureByReference/AnimateTexturesBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureByReference/ImageOps.java b/src/TextureByReference/ImageOps.java index d5a8bec..be25f0f 100644 --- a/src/TextureByReference/ImageOps.java +++ b/src/TextureByReference/ImageOps.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureByReference/Tetrahedron.java b/src/TextureByReference/Tetrahedron.java index 11d4a89..c2c4fe7 100644 --- a/src/TextureByReference/Tetrahedron.java +++ b/src/TextureByReference/Tetrahedron.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureByReference/TextureByReference.java b/src/TextureByReference/TextureByReference.java index 8e2507c..93cfeec 100644 --- a/src/TextureByReference/TextureByReference.java +++ b/src/TextureByReference/TextureByReference.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureByReference/build.xml b/src/TextureByReference/build.xml index 4e57328..47e5a36 100644 --- a/src/TextureByReference/build.xml +++ b/src/TextureByReference/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureTest/MultiTextureTest.java b/src/TextureTest/MultiTextureTest.java index e38eb71..dadb96c 100644 --- a/src/TextureTest/MultiTextureTest.java +++ b/src/TextureTest/MultiTextureTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureTest/TextureImage.java b/src/TextureTest/TextureImage.java index 7516d37..9d74efd 100644 --- a/src/TextureTest/TextureImage.java +++ b/src/TextureTest/TextureImage.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TextureTest/build.xml b/src/TextureTest/build.xml index 4e57328..47e5a36 100644 --- a/src/TextureTest/build.xml +++ b/src/TextureTest/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockCollision/Box.java b/src/TickTockCollision/Box.java index cb133a9..561702a 100644 --- a/src/TickTockCollision/Box.java +++ b/src/TickTockCollision/Box.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockCollision/CollisionDetector.java b/src/TickTockCollision/CollisionDetector.java index 77c846f..515b4c4 100644 --- a/src/TickTockCollision/CollisionDetector.java +++ b/src/TickTockCollision/CollisionDetector.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockCollision/TickTockCollision.java b/src/TickTockCollision/TickTockCollision.java index 854a2bc..f6b36f6 100644 --- a/src/TickTockCollision/TickTockCollision.java +++ b/src/TickTockCollision/TickTockCollision.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockCollision/build.xml b/src/TickTockCollision/build.xml index 4e57328..47e5a36 100644 --- a/src/TickTockCollision/build.xml +++ b/src/TickTockCollision/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockPicking/Cube.java b/src/TickTockPicking/Cube.java index ab0977d..9c791b4 100644 --- a/src/TickTockPicking/Cube.java +++ b/src/TickTockPicking/Cube.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockPicking/PickHighlightBehavior.java b/src/TickTockPicking/PickHighlightBehavior.java index 3469c73..dc9294b 100644 --- a/src/TickTockPicking/PickHighlightBehavior.java +++ b/src/TickTockPicking/PickHighlightBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockPicking/Tetrahedron.java b/src/TickTockPicking/Tetrahedron.java index 5cd2fa8..cbb2e26 100644 --- a/src/TickTockPicking/Tetrahedron.java +++ b/src/TickTockPicking/Tetrahedron.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockPicking/TickTockPicking.java b/src/TickTockPicking/TickTockPicking.java index ee77935..5020432 100644 --- a/src/TickTockPicking/TickTockPicking.java +++ b/src/TickTockPicking/TickTockPicking.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/TickTockPicking/build.xml b/src/TickTockPicking/build.xml index 4e57328..47e5a36 100644 --- a/src/TickTockPicking/build.xml +++ b/src/TickTockPicking/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Timer/TimerTest.java b/src/Timer/TimerTest.java index 37f0f7c..ef5d479 100644 --- a/src/Timer/TimerTest.java +++ b/src/Timer/TimerTest.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/Timer/build.xml b/src/Timer/build.xml index 4e57328..47e5a36 100644 --- a/src/Timer/build.xml +++ b/src/Timer/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/ButtonPositionControls.java b/src/VirtualInputDevice/ButtonPositionControls.java index 73fccbe..b741baa 100644 --- a/src/VirtualInputDevice/ButtonPositionControls.java +++ b/src/VirtualInputDevice/ButtonPositionControls.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/HelloUniverse.java b/src/VirtualInputDevice/HelloUniverse.java index 3632727..474c7e6 100644 --- a/src/VirtualInputDevice/HelloUniverse.java +++ b/src/VirtualInputDevice/HelloUniverse.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/PositionControls.java b/src/VirtualInputDevice/PositionControls.java index e5ea536..e9b092c 100644 --- a/src/VirtualInputDevice/PositionControls.java +++ b/src/VirtualInputDevice/PositionControls.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/README b/src/VirtualInputDevice/README index efc4b7b..cacea02 100644 --- a/src/VirtualInputDevice/README +++ b/src/VirtualInputDevice/README @@ -1,13 +1,13 @@ /* - * $RCSfile$ + * @(#)README 1.5 01/06/20 16:19:00 * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 1996-2001 Sun Microsystems, Inc. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * - * - Redistribution of source code must retain the above copyright + * - Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * - Redistribution in binary form must reproduce the above copyright @@ -23,23 +23,18 @@ * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY - * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL - * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF - * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS - * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR - * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, - * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND - * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR - * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGES. + * EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES + * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR + * DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN + * OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR + * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR + * PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF + * LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, + * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. * - * You acknowledge that this software is not designed, licensed or - * intended for use in the design, construction, operation or - * maintenance of any nuclear facility. - * - * $Revision$ - * $Date$ - * $State$ + * You acknowledge that Software is not designed,licensed or intended + * for use in the design, construction, operation or maintenance of + * any nuclear facility. */ Java 3D (TM) Input Device Driver Development Guide diff --git a/src/VirtualInputDevice/RotationControls.java b/src/VirtualInputDevice/RotationControls.java index b95a51a..8349e5e 100644 --- a/src/VirtualInputDevice/RotationControls.java +++ b/src/VirtualInputDevice/RotationControls.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/SensorBehavior.java b/src/VirtualInputDevice/SensorBehavior.java index f587a83..331e687 100644 --- a/src/VirtualInputDevice/SensorBehavior.java +++ b/src/VirtualInputDevice/SensorBehavior.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/VirtualInputDevice.java b/src/VirtualInputDevice/VirtualInputDevice.java index 934c8f8..dcb7fb2 100644 --- a/src/VirtualInputDevice/VirtualInputDevice.java +++ b/src/VirtualInputDevice/VirtualInputDevice.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/WheelControls.java b/src/VirtualInputDevice/WheelControls.java index 332bb3e..a6d2eb9 100644 --- a/src/VirtualInputDevice/WheelControls.java +++ b/src/VirtualInputDevice/WheelControls.java @@ -1,7 +1,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/VirtualInputDevice/build.xml b/src/VirtualInputDevice/build.xml index 4e57328..47e5a36 100644 --- a/src/VirtualInputDevice/build.xml +++ b/src/VirtualInputDevice/build.xml @@ -4,7 +4,7 @@ /* * $RCSfile$ * - * Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved. + * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..1d5533b --- /dev/null +++ b/src/index.html @@ -0,0 +1,183 @@ +<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> +<html> +<head> +<title>Java 3D Example Programs</title> +</head> + +<body bgcolor="#ffffff"> +<center><h1>Java 3D Example Programs</h1></center> + +<h3>Run the Example Programs</h3> + +<p> +<font size=-1> +If these example programs don't work in your browser, refer to +"RUNNING JAVA 3D™ IN A BROWSER" in the Java 3D™ README file. +</font> + +<p> +Click on any of the hyperlinks below to run that example program in your +browser using Java Plug-in. + +<ul> + +<h4>HelloUniverse</h4> +<dl> +<dd><a href="HelloUniverse/HelloUniverse_plugin.html">HelloUniverse</a><br> +</dl> +<h4>AWT_Interaction</h4> +<dl> +<dd><a href="AWT_Interaction/AWTInteraction_plugin.html">AWTInteraction</a><br> +</dl> +<h4>AlternateAppearance</h4> +<dl> +<dd><a href="AlternateAppearance/AlternateAppearanceBoundsTest_plugin.html">AlternateAppearanceBoundsTest</a><br> +<dd><a href="AlternateAppearance/AlternateAppearanceScopeTest_plugin.html">AlternateAppearanceScopeTest</a><br> +</dl> +<h4>Appearance</h4> +<dl> +<dd><a href="Appearance/AppearanceTest_plugin.html">AppearanceTest</a><br> +</dl> +<h4>AppearanceMixed</h4> +<dl> +<dd><a href="AppearanceMixed/AppearanceMixed_plugin.html">AppearanceMixed</a><br> +</dl> +<h4>Background</h4> +<dl> +<dd><a href="Background/BackgroundGeometry_plugin.html">BackgroundGeometry</a><br> +</dl> +<h4>ConicWorld</h4> +<dl> +<dd><a href="ConicWorld/ConicWorld_plugin.html">ConicWorld</a><br> +</dl> +<h4>FourByFour</h4> +<dl> +<dd><a href="FourByFour/FourByFour_plugin.html">FourByFour</a><br> +</dl> +<h4>GearTest</h4> +<dl> +<dd><a href="GearTest/GearBox_plugin.html">GearBox</a><br> +<dd><a href="GearTest/GearTest_plugin.html">GearTest</a><br> +</dl> +<h4>GeometryByReference</h4> +<dl> +<dd><a href="GeometryByReference/GeometryByReferenceTest_plugin.html">GeometryByReferenceTest</a><br> +<dd><a href="GeometryByReference/ImageComponentByReferenceTest_plugin.html">ImageComponentByReferenceTest</a><br> +<dd><a href="GeometryByReference/InterleavedTest_plugin.html">InterleavedTest</a><br> +</dl> +<h4>GeometryCompression</h4> +<dl> +<dd>cgview (runs as an application only) +<dd>obj2cg (runs as an application only) +</dl> +<h4>Lightwave</h4> +<dl> +<dd><a href="Lightwave/Viewer_plugin.html">Viewer</a><br> +</dl> +<h4>LOD</h4> +<dl> +<dd><a href="LOD/LOD_plugin.html">LOD</a><br> +</dl> +<h4>ModelClip</h4> +<dl> +<dd><a href="ModelClip/ModelClipTest_plugin.html">ModelClipTest</a><br> +<dd><a href="ModelClip/ModelClipTest2_plugin.html">ModelClipTest2</a><br> +</dl> +<h4>Morphing</h4> +<dl> +<dd><a href="Morphing/Morphing_plugin.html">Morphing</a><br> +<dd><a href="Morphing/Pyramid2Cube_plugin.html">Pyramid2Cube</a><br> +</dl> +<h4>ObjLoad</h4> +<dl> +<dd><a href="ObjLoad/ObjLoad_plugin.html">ObjLoad</a><br> +</dl> +<h4>OffScreenCanvas3D</h4> +<dl> +<dd><a href="OffScreenCanvas3D/OffScreenTest_plugin.html">OffScreenTest</a><br> +<dd><a href="OffScreenCanvas3D/PrintFromButton_plugin.html">PrintFromButton</a><br> +</dl> +<h4>OrientedShape3D</h4> +<dl> +<dd><a href="OrientedShape3D/OrientedTest_plugin.html">OrientedTest</a><br> +<dd><a href="OrientedShape3D/OrientedPtTest_plugin.html">OrientedPtTest</a><br> +</dl> +<h4>PackageInfo</h4> +<dl> +<dd>PackageInfo (runs as an application only) +<dd>QueryProperties (runs as an application only) +</dl> +<h4>PickTest</h4> +<dl> +<dd><a href="PickTest/IntersectTest_plugin.html">IntersectTest</a><br> +<dd><a href="PickTest/PickTest_plugin.html">PickTest</a><br> +</dl> +<h4>PickText3D</h4> +<dl> +<dd><a href="PickText3D/PickText3DBounds_plugin.html">PickText3DBounds</a><br> +<dd><a href="PickText3D/PickText3DGeometry_plugin.html">PickText3DGeometry</a><br> +</dl> +<h4>PlatformGeometry</h4> +<dl> +<dd><a href="PlatformGeometry/SimpleGeometry_plugin.html">SimpleGeometry</a><br> +</dl> +<h4>PrintCanvas3D</h4> +<dl> +<dd>PrintCanvas3D (runs as an application only) +</dl> +<h4>PureImmediate</h4> +<dl> +<dd><a href="PureImmediate/PureImmediate_plugin.html">PureImmediate</a><br> +<dd><a href="PureImmediate/PureImmediateStereo_plugin.html">PureImmediateStereo</a><br> +</dl> +<h4>ReadRaster</h4> +<dl> +<dd><a href="ReadRaster/ReadRaster_plugin.html">ReadRaster</a><br> +</dl> +<h4>Sound</h4> +<dl> +<dd><a href="Sound/MoveAppBoundingLeaf_plugin.html">MoveAppBoundingLeaf</a><br> +<dd><a href="Sound/ReverberateSound_plugin.html">ReverberateSound</a><br> +<dd><a href="Sound/SimpleSounds_plugin.html">SimpleSounds</a><br> +</dl> +<h4>SphereMotion</h4> +<dl> +<dd><a href="SphereMotion/SphereMotion_plugin.html">SphereMotion</a><br> +</dl> +<h4>SplineAnim</h4> +<dl> +<dd><a href="SplineAnim/SplineAnim_plugin.html">SplineAnim</a><br> +</dl> +<h4>Text2D</h4> +<dl> +<dd><a href="Text2D/Text2DTest_plugin.html">Text2DTest</a><br> +</dl> +<h4>Text3D</h4> +<dl> +<dd><a href="Text3D/Text3DLoad_plugin.html">Text3DLoad</a><br> +</dl> +<h4>TextureByReference</h4> +<dl> +<dd><a href="TextureByReference/TextureByReference_plugin.html">TextureByReference</a><br> +</dl> +<h4>TextureTest</h4> +<dl> +<dd><a href="TextureTest/MultiTextureTest_plugin.html">MultiTextureTest</a><br> +<dd><a href="TextureTest/TextureImage_plugin.html">TextureImage</a><br> +</dl> +<h4>TickTockCollision</h4> +<dl> +<dd><a href="TickTockCollision/TickTockCollision_plugin.html">TickTockCollision</a><br> +</dl> +<h4>TickTockPicking</h4> +<dl> +<dd><a href="TickTockPicking/TickTockPicking_plugin.html">TickTockPicking</a><br> +</dl> +<h4>VirtualInputDevice</h4> +<dl> +<dd><a href="VirtualInputDevice/HelloUniverse_plugin.html">HelloUniverse</a><br> +</dl> +</ul> + +</body> +</html> |