// File: Polygon_skeleton.java
// Time-stamp: "2005-09-21 23:53:56 calvanese"
// Purpose: Written exam 20/9/2005 - BSC in Production Engineering
//          Polygon: skeleton of the class

public class Polygon {

  // representation of the objects
  private Vertex[] vertices;
  private int numVert;

  // pubblic methods

  public Polygon(int size) { }
  
  public int numVertices() { }

  public int getSize() { }

  public Vertex getVertex(int pos) { }

  public void addVertex(Vertex v, int pos) { }

  public void removeVertex(int pos) { }

  public int findVertex(double x, double y) { }

  public int[] verticesOfColor(String col) { }

}
