#include <geometry.h>
Public Member Functions | |
Pixel (int xx, int yy, int zz, float vv) | |
Construct a Pixel object given its 3D coordinates and its value. | |
Pixel (const Pixel &p) | |
IntPoint | get_point () const |
Get the pixel's coordinates as an integer point. | |
float | get_value () const |
Get the pixel's intensity value. | |
Public Attributes | |
int | x |
int | y |
int | z |
float | value |
Definition at line 456 of file geometry.h.
EMAN::Pixel::Pixel | ( | int | xx, | |
int | yy, | |||
int | zz, | |||
float | vv | |||
) | [inline] |
EMAN::Pixel::Pixel | ( | const Pixel & | p | ) | [inline] |
IntPoint EMAN::Pixel::get_point | ( | ) | const [inline] |
float EMAN::Pixel::get_value | ( | ) | const [inline] |
Get the pixel's intensity value.
Definition at line 479 of file geometry.h.
References value.
00480 { 00481 return value; 00482 }
float EMAN::Pixel::value |
Definition at line 487 of file geometry.h.
Referenced by get_value(), EMAN::operator<(), and EMAN::operator==().
int EMAN::Pixel::x |
int EMAN::Pixel::y |
int EMAN::Pixel::z |