#include <IGPoint.h>
Inheritance diagram for IGPoint:
Public Methods | |
IGPoint () | |
IGPoint (double x, double y, double z, double gray=0.0) | |
IGPoint (double x, double y, double z, double red, double green, double blue) | |
IGPoint (const IGPoint& P) | |
~IGPoint () | |
IGPoint& | operator= (const IGPoint& P) |
void | Draw (void) const |
draws the point using OpenGL. | |
Private Attributes | |
IGColor | col |
the color of the point. | |
Friends | |
istream& | operator >> (istream& in, IGPoint& P) |
reads a point from the input stream NOTE: is not the inverse of the operator<<. | |
ostream& | operator<< (ostream& out, const IGPoint& P) |
writes a point to the output stream NOTE: is not the inverse of the operator>>. |
|
Definition at line 24 of file IGPoint.cpp.
|
Definition at line 28 of file IGPoint.cpp.
|
Definition at line 39 of file IGPoint.cpp.
|
Definition at line 52 of file IGPoint.cpp.
|
Definition at line 60 of file IGPoint.cpp.
|
draws the point using OpenGL.
Definition at line 74 of file IGPoint.cpp.
Referenced by IGPolygon::Draw().
|
Definition at line 64 of file IGPoint.cpp.
|
reads a point from the input stream NOTE: is not the inverse of the operator<<.
Definition at line 80 of file IGPoint.cpp.
|
writes a point to the output stream NOTE: is not the inverse of the operator>>.
Definition at line 88 of file IGPoint.cpp.
|