#include <j2k/Fred/3d/Matrice44.hpp>
#include <fstream.h>
Go to the source code of this file.
Compounds | |
struct | Sommet2D |
struct | Sommet3D |
struct | Sommet3DH |
Functions | |
DefType (Pixel) DefType(Sommet2D) DefType(Sommet3D) DefType(Sommet3DH) class Pixel | |
istream & | operator>> (istream &in, const Pixel &p) |
istream & | operator>> (istream &in, const Sommet2D &s) |
istream & | operator>> (istream &in, const Sommet3D &s) |
istream & | operator>> (istream &in, const Sommet3DH &s) |
ostream & | operator<< (ostream &out, const Pixel &p) |
ostream & | operator<< (ostream &out, const Sommet2D &s) |
ostream & | operator<< (ostream &out, const Sommet3D &s) |
ostream & | operator<< (ostream &out, const Sommet3DH &s) |
|
Definition at line 15 of file Sommet.hpp. 00023 { 00024 public: 00025 long x, y; 00026 00027 Pixel(): x( 0L ), y( 0L ) { } 00028 Pixel( long X, long Y ) : x( X ), y( Y ) { } 00029 Pixel( const Pixel& p ) : x( p.x ), y( p.y ) { } 00030 }; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|