/*************************
 * Duncan Bryce          *
 * 6.837 Project #2      *
 * TA Jacob Schwartz     *
 ************************/

import GfxLib.*;

public class Vertex2D
{
  public float x, y;
  public int argb;

  public Vertex2D(float xval, float yval, int cval)
  {
    x = xval;
    y = yval;

    argb = cval;
  }

  public String toString()
  {
    return "<" + x + ", " + y + ", " + argb + ">";
  }
}
