#include <Point.h>
Public Member Functions | |
Point () | |
Point (int id, double x, double y, double z) | |
Point (double x, double y, double z) | |
Point (const Point &p) | |
void | operator= (const Point &p) |
bool | operator== (const Point &p) |
~Point () | |
void | setId (int id) |
void | setX (double x) |
void | setY (double y) |
void | setZ (double z) |
int | getId () const |
double | getX () const |
double | getY () const |
double | getZ () const |
void | setProcessed (bool processed) |
bool | isProcessed () const |
Private Attributes | |
double | x |
double | y |
double | z |
int | id |
bool | processed |
Fecha de creación : 2007-03-18
Definition at line 33 of file Point.h.
Point::Point | ( | ) |
Point::Point | ( | int | id, | |
double | x, | |||
double | y, | |||
double | z | |||
) |
Point::Point | ( | double | x, | |
double | y, | |||
double | z | |||
) |
Point::Point | ( | const Point & | p | ) |
void Point::operator= | ( | const Point & | p | ) |
bool Point::operator== | ( | const Point & | p | ) |
void Point::setId | ( | int | id | ) |
void Point::setX | ( | double | x | ) |
void Point::setY | ( | double | y | ) |
void Point::setZ | ( | double | z | ) |
int Point::getId | ( | ) | const |
Definition at line 81 of file Point.cpp.
References id.
Referenced by Triangle::contains(), operator=(), operator==(), and Point().
00082 { 00083 return id; 00084 }
double Point::getX | ( | ) | const |
double Point::getY | ( | ) | const |
double Point::getZ | ( | ) | const |
void Point::setProcessed | ( | bool | processed | ) |
bool Point::isProcessed | ( | ) | const |
double Point::x [private] |
double Point::y [private] |
double Point::z [private] |
bool Point::processed [private] |