Intersects - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.
Our website is currently undergoing maintenance, which may result in occasional errors while browsing. We apologize for any inconvenience this may cause and are working swiftly to restore full functionality. Thank you for your patience.

Online Help

All Products    Maple    MapleSim


Student[MultivariateCalculus]

  

Intersects

  

test if lines or planes intersect

 

Calling Sequence

Parameters

Description

Examples

Compatibility

Calling Sequence

Intersects(pl1, pl2)

Parameters

pl1, pl2

-

list, Line, Plane ; point, Line or Plane defined by Student[MultivariateCalculus].

Description

• 

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.

Examples

withStudentMultivariateCalculus:

l1Line0,2,6,10,15,20:

l2Line3,7,3,2,3,4:

AreParallell1,l2

true

(1)

Intersectsl1,l2

false

(2)

p1Plane0,3,1,0,3,2:

p2Plane4,1,3,0,3,2:

Intersectsp1,p2

false

(3)

Intersectsp1,l2

true

(4)

Intersectsl1,p2

true

(5)

Compatibility

• 

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]

Student[MultivariateCalculus][Line]

Student[MultivariateCalculus][Plane]

Student[MultivariateCalculus][AreParallel]

Student[MultivariateCalculus][AreSkew]

Student[MultivariateCalculus][GetIntersection]