/// <summary> /// Gets absolute value of distance between provided <see cref="Point3D"/> and current <see cref="Plane"/> object. /// </summary> /// <param name="p"><see cref="Point3D"/> to calculate distance to.</param> /// <returns>Absolute value of distance between current <see cref="Plane"/> object and provided <see cref="Point3D"/>.</returns> public float AbsoluteDistanceToPoint(Point3D p) { return(Utility.AbsoluteValue(DistanceTo(p))); }