Skip to content
wang429 edited this page Oct 30, 2011 · 10 revisions

Public:

void insertPointAt(Vector &, int);

Takes in a Vector and an integer index as parameters. Inserts Vector into array at index.

void removePoint(int);

Take in an integer as a parameter. Removes Vector at index from array.

int countVertices();

Returns the number of Vectors in the array

Vector & pointAt(int);

Vector & operator;

Private:

vector(Vector) vertices

General info

Clone this wiki locally