public Plane GetInverse()
 {
     Plane plane = new Plane(this.normal, this.d);
     plane.Invert();
     return plane;
 }