GEOareParallels |
Top Previous Next |
Test auf Parallelität. Mit dieser Routine wird überprüft, ob zwei Linien parallel zueinander liegen. 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 parallel, sonst FALSE. Deklaration #include "basic.h"
BOOLEAN DLLENTRY GEOareParallels ( const double x1, const double y1, const double x2, const double y2, const double x3, const double y3, const double x4, const double y4 ); Verwandte Funktionen
|