de.beamertool.viewer.gui.opengl.gl
Class Point3f

java.lang.Object
  extended by de.beamertool.viewer.gui.opengl.gl.Point3f

public class Point3f
extends Object

Represents a very basic, immutable three-dimensional point. (Since we have limited use for it in this project, it's easier to roll our own than to use the one defined in the javax.vecmath package.)

Author:
Chris Campbell, $Author : ocm-zeeman $

Constructor Summary
Point3f()
           
Point3f(float x, float y, float z)
           
 
Method Summary
 float getX()
           
 float getY()
           
 float getZ()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Point3f

public Point3f()

Point3f

public Point3f(float x,
               float y,
               float z)
Method Detail

getX

public float getX()

getY

public float getY()

getZ

public float getZ()

toString

public String toString()
Overrides:
toString in class Object