From c8e0d487886dbec1e3a994ea36724bbf59f5122a Mon Sep 17 00:00:00 2001 From: Kenneth Russel Date: Tue, 9 Oct 2007 07:38:25 +0000 Subject: Integration of Tomas Hrasky's port of basic GLU NURBS functionality from C++ to Java, plus example applications, done as part of his Bachelor of Science degree at the University of Hradec Králové, Faculty of Informatics and Management. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Current state of code is documented in src/classes/com/sun/opengl/impl/nurbs/README.txt. Example applications require Java 1.5 and are not currently built by default. Specify -Djogl.nurbs=1 during jogl-demos build with a 1.5 javac on the PATH to build them. Dependent jars are copied to build output directory. Deleted old partially-complete GLU NURBS port. git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/../svn-server-sync/jogl-demos/trunk@223 3298f667-5e0e-4b4a-8ed4-a3559d26a5f4 --- src/demos/nurbs/surfaceapp/MyFloat.java | 55 +++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100755 src/demos/nurbs/surfaceapp/MyFloat.java (limited to 'src/demos/nurbs/surfaceapp/MyFloat.java') diff --git a/src/demos/nurbs/surfaceapp/MyFloat.java b/src/demos/nurbs/surfaceapp/MyFloat.java new file mode 100755 index 0000000..a9bd7cf --- /dev/null +++ b/src/demos/nurbs/surfaceapp/MyFloat.java @@ -0,0 +1,55 @@ +package demos.nurbs.surfaceapp; + +import simple.xml.Attribute; +import simple.xml.Root; + +/** + * Class for serializing decimal point number using SimpleXML + * Třída umožňující serializaci desetinného čísla ve formátu plovoucí čárky (float) + * @author Tomáš Hráský + * + */ +@Root(name="floatval") +public class MyFloat { + /** + * Value + * Hodnota + */ + @Attribute(name="val") + private float value; + + /** + * Constructor, sets value to 0 + * Konstrktor, hodnota je defaultně 0 + */ + public MyFloat(){ + value=0; + } + + /** + * Creates instance with specified value + * Vytvoří instanci objektu s požadovanou hodnotou + * @param f value + */ + public MyFloat(float f) { + value = f; + } + + /** + * Returns value of decimal number + * Vrací hodnotu des. čísla + * @return value + */ + public float getValue() { + return value; + } + + /** + * Sets value + * Nastavuje hodnotu objektu + * @param value value + */ + public void setValue(float value) { + this.value = value; + } +} -- cgit v1.2.3