hasVertex method

bool hasVertex(
  1. Vertex v
)

Implementation

bool hasVertex(Vertex v){
	return v == this.v1 || v == this.v2 || v == this.v3;
}