calc
Class Vektor

java.lang.Object
  extended by calc.Vektor

public class Vektor
extends java.lang.Object

Java class, representing a vector. Just x,y,z coordinate defined as public variables of this object.


Field Summary
 double x
          Coordinates of the Vector
 double y
          Coordinates of the Vector
 double z
          Coordinates of the Vector
 
Constructor Summary
Vektor(double x, double y, double z)
          Generates a new Vector with the given coordinates.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

x

public double x
Coordinates of the Vector


y

public double y
Coordinates of the Vector


z

public double z
Coordinates of the Vector

Constructor Detail

Vektor

public Vektor(double x,
              double y,
              double z)
Generates a new Vector with the given coordinates.