*** empty log message ***
[lsystem3d.git] / src / coordinate.h
index cac2a1a5e5fc9f119bea689af40b8187db601243..70c990a6e651b503090b2d176269fdb131278fbb 100644 (file)
@@ -30,6 +30,7 @@
 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: