public VertexEntry()
 {
     this.Edges = EdgeListPool.Get();
     this.Faces = FaceListPool.Get();
 }
 public FaceEntry()
 {
     this.Vertices = VertexListPool.Get();
     this.Edges    = EdgeListPool.Get();
 }