
#include <iostream>#include <math.h>#include <GDT/gdtlist.h>


Go to the source code of this file.
Namespaces | |
| namespace | gdt |
Classes | |
| class | gdt::gdtpoint |
| class | gdt::gdtsegment |
| class | gdt::gdtline |
| class | gdt::gdtpolygon |
| class | gdt::gdtcircle |
Defines | |
| #define | MAX(a, b) ((a)>(b) ? (a) : (b)) |
| #define | MIN(a, b) ((a)<(b) ? (a) : (b)) |
| #define | SIGN(a) ((a>=0) ? 1 : -1) |
Functions | |
| std::ostream & | gdt::operator<< (std::ostream &os, const gdtpoint &p) |
| std::istream & | gdt::operator>> (std::istream &is, gdtpoint &p) |
| bool | gdt::operator!= (const gdt::gdtpoint &p1, const gdt::gdtpoint &p2) |
| bool | gdt::operator== (const gdt::gdtpoint &p1, const gdt::gdtpoint &p2) |
| std::ostream & | gdt::operator<< (std::ostream &os, const gdtsegment &s) |
Definition in file gdtgeometry.h.
| #define MAX | ( | a, | |||
| b | ) | ((a)>(b) ? (a) : (b)) |
Definition at line 33 of file gdtgeometry.h.
| #define MIN | ( | a, | |||
| b | ) | ((a)<(b) ? (a) : (b)) |
Definition at line 34 of file gdtgeometry.h.
| #define SIGN | ( | a | ) | ((a>=0) ? 1 : -1) |
Definition at line 36 of file gdtgeometry.h.
1.5.3