Calculate the perpendicular distance from a point to a plane in 3D space
Enter the coordinates of a point and the coefficients of a plane equation to calculate the shortest (perpendicular) distance between them.
Plane equation format: ax + by + cz + d = 0
The distance from point (x₀,y₀,z₀) to plane ax + by + cz + d = 0 is calculated using: distance = |ax₀ + by₀ + cz₀ + d| / √(a² + b² + c²).