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

Online Help

All Products    Maple    MapleSim


geometry

  

method

  

returns the method to define a triangle

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

method(T)

Parameters

T

-

triangle

Description

• 

The routine returns the method used to define the triangle T. It returns ``points'', ``sides'', or ``angle''. See the help page of triangle for the explanation of the output.

• 

The command with(geometry,method) allows the use of the abbreviated form of this command.

Examples

> 

with⁡geometry:

> 

point⁡A,0,0,point⁡B,1,1,point⁡C,1,0:

> 

triangle⁡T1,A,B,C:

> 

method⁡T1

points

(1)
> 

triangle⁡T2,3,3,3:

> 

method⁡T2

sides

(2)

See Also

geometry[triangle]