Line-Plane Intersection
A line r = r₀ + t·d intersects plane n·r = k when n·d≠0. Parameter t = (k − n·r₀)/(n·d). If n·d=0: line parallel to plane (no intersection or line in plane).
Did our AI summary help? Let us know.
n·d ≠ 0: unique intersection at t = (k−n·r₀)/(n·d). n·d = 0: line parallel; check if r₀ satisfies plane. Intersection point: r₀ + t·d.
Ready to run the numbers?
Why: Line-plane intersection is fundamental in 3D graphics (ray casting), CAD, and physics. Used for collision detection, shadow computation, and geometric queries.
How: Line: r = r₀ + t·d. Plane: n·r = k. Substitute: n·(r₀+td)=k ⇒ t = (k−n·r₀)/(n·d). If n·d=0, line is parallel to plane.
Run the calculator when you are ready.
Sample Examples
Input
Line: r = r₀ + tv
Plane: Ax+By+Cz+D=0
Results
Intersection Point
(1, 1, 1)
t = -0
Step-by-Step
Denominator: Aa+Bb+Cc = 1·1+1·2+1·3 = 6
Numerator: Ax₀+By₀+Cz₀+D = 0
t = -numer/denom = -0
Intersection: P = (1, 1, 1)
For educational and informational purposes only. Verify with a qualified professional.
🧮 Fascinating Math Facts
t = (k−n·r₀)/(n·d) when n·d≠0.
— 3D Geometry
n·d=0 ⇒ line parallel to plane.
— Condition
Key Takeaways
- Substitute line into plane Ax+By+Cz+D=0.
- Solve for t: .
- Parallel: denominator Aa+Bb+Cc = 0 (no intersection).
- Line in plane: denominator and numerator both zero.
- Otherwise: unique intersection point.
Did You Know?
Understanding
Substitute x=x₀+at, y=y₀+bt, z=z₀+ct into Ax+By+Cz+D=0. Solve for t.
Expert Tips
FAQ
A: When line is parallel to plane (n·v=0) and not in it.
A: When line lies in plane.
A: Not a valid line.
A: Ray tracing, collision detection, clipping.
A: t = -(Ax₀+By₀+Cz₀+D)/(Aa+Bb+Cc).
A: Distance uses same formula; intersection uses t.
A: Yes; intersection is in opposite direction of v.
How to Use
- Enter line point (x₀, y₀, z₀) and direction (a, b, c).
- Enter plane Ax+By+Cz+D=0.
- Get intersection point or special case.
Disclaimer
Direction vector and plane normal must be non-zero.
Related Calculators
Plane To Plane Intersection Calculator
Plane To Plane Intersection Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsParallel Line Calculator
Parallel Line Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsPerpendicular Line Calculator
Perpendicular Line Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsIntersection Of Two Lines Calculator
Intersection Of Two Lines Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsLines To Line Distance Calculator
Lines To Line Distance Calculator - Calculate and learn about coordinate-geometry concepts
MathematicsPoint To Line Distance Calculator
Point To Line Distance Calculator - Calculate and learn about coordinate-geometry concepts
Mathematics