Intersects - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Mozilla Firefox.

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

> 

with⁡StudentMultivariateCalculus:

> 

l1≔Line⁡0,2,6,10,15,20:

> 

l2≔Line⁡−3,7,3,2,3,4:

> 

AreParallel⁡l1,l2

true

(1)
> 

Intersects⁡l1,l2

false

(2)
> 

p1≔Plane⁡0,3,1,0,3,2:

> 

p2≔Plane⁡−4,1,3,0,3,2:

> 

Intersects⁡p1,p2

false

(3)
> 

Intersects⁡p1,l2

true

(4)
> 

Intersects⁡l1,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]