*** empty log message ***
[lsystem3d.git] / src / coordinate.h
index cac2a1a5e5fc9f119bea689af40b8187db601243..6d1b63f0ab651d6271364196e5c8c0843a44cee2 100644 (file)
@@ -1,6 +1,6 @@
 // Copyright (C) 2006 Erik Dahlberg
 // 
-// This file is part of LSystem3d.
+// This file is part of LSystem3D.
 // 
 // LSystem3D is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License
 
 
 /**
- * 3d coordinate
+ * 3D coordinate
  */
 class Coordinate
 {
 public:
+    
     /**
      * Constructor
      */
@@ -40,6 +41,14 @@ public:
      */
     ~Coordinate();
     
+    /**
+     * Set coordinate
+     * @param x the x-coordinate
+     * @param y the y-coordinate
+     * @param z the z-coordinate
+     */
+    void setXYZ(double x, double y, double z);
+    
     /**
      * Get x-coordinate
      * @return the x-coordinate
@@ -57,14 +66,6 @@ public:
      * @return the z-coordinate
      */
     double getZ();
-    
-    /**
-     * Set coordinate
-     * @param x the x-coordinate
-     * @param y the y-coordinate
-     * @param z the z-coordinate
-     */
-    void setXYZ(double x, double y, double z);
 
 protected: