/**
 * Vector3f.java
 */
package com.jme3.math;

import java.io.Serializable;

/**
 * Vector3f to use with GWT
 */
public class Vector3f implements Serializable {
  /** The serialization version */
  private static final long serialVersionUID = 1L;

  /** The x coordinate */
  private float x = 0.0f;
  /** The y coordinate */
  private float y = 0.0f;
  /** The z coordinate */
  private float z = 0.0f;
  
  /** Default constructor */
  public Vector3f() {  
  }
  
  /**
   * @param x
   * @param y
   * @param z
   */
  public Vector3f(float x, float y, float z) {
    this.x = x;
    this.y = y;
    this.z = z;
  }
}
