Student[MultivariateCalculus]
Intersects
test if lines or planes intersect
Calling Sequence
Parameters
Description
Examples
Compatibility
Intersects(pl1, pl2)
pl1, pl2
-
list, Line, Plane ; point, Line or Plane defined by Student[MultivariateCalculus].
The Intersects command determines if two Line or Plane objects intersect.
The point, line, or plane of intersection can be obtained by GetIntersection.
Two Line objects in 3D can be non-parallel but non-intersecting. Such two lines are skew. This property can be detected by AreSkew.
If one object is contained in another object, then they intersect. In particular, if two objects are equal, then they intersect.
with⁡StudentMultivariateCalculus:
l1≔Line⁡0,2,6,10,15,20:
l2≔Line⁡−3,7,3,2,3,4:
AreParallel⁡l1,l2
true
Intersects⁡l1,l2
false
p1≔Plane⁡0,3,1,0,3,2:
p2≔Plane⁡−4,1,3,0,3,2:
Intersects⁡p1,p2
Intersects⁡p1,l2
Intersects⁡l1,p2
The Student[MultivariateCalculus][Intersects] command was introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
Student[MultivariateCalculus][Line]
Student[MultivariateCalculus][Plane]
Student[MultivariateCalculus][AreParallel]
Student[MultivariateCalculus][AreSkew]
Student[MultivariateCalculus][GetIntersection]
Download Help Document