GEOareOrthogonals

Top  Previous  Next

Test ob Linien orthogonal sind.

Mit dieser Routine wird überprüft, ob zwei Linien orthogonal sind.

Parameter

x1 (const double)                                        [IN]

y1 (const double)                                        [IN]

Startpunkt der ersten Linie.

x2 (const double)                                        [IN]

y2 (const double)                                        [IN]

Endpunkt der ersten Linie.

x3 (const double)                                        [IN]

y3 (const double)                                        [IN]

Startpunkt der zweiten Linie.

x4 (const double)                                        [IN]

y4 (const double)                                        [IN]

Endpunkt der zweiten Linie.

Ergebnis

(BOOLEAN)                                            [OUT]

TRUE, wenn die beiden Linien orthogonal sind, sonst FALSE.

Deklaration

#include "basic.h"

 

BOOLEAN DLLENTRY GEOareOrthogonals (

     const double      x1,

     const double      y1,

     const double      x2,

     const double      y2,

     const double      x3,

     const double      y3,

     const double      x4,

     const double      y4

);