makeEmpty method

ConvexHull makeEmpty()

Implementation

ConvexHull makeEmpty() {
  faces = [];
  vertices = [];

  return this;
}