golib
0.5
|
#include <goviewplane.h>
Public Member Functions | |
goViewPlane (goViewPlane &other) | |
go3Vector< volFloat > & | getPosition () |
go3Vector< volFloat > & | getSize () |
go3Vector< volFloat > & | getScreenSize () |
void | setEyePos (go3Vector< volFloat > &p) |
void | setSize (go3Vector< volFloat > &s) |
void | setScreenSize (go3Vector< volFloat > &s) |
void | setScreenSize (goInt32 x, goInt32 y) |
For convenience. See setScreenSize(go3Vector<volFloat>& s) | |
void | setSize (volFloat x, volFloat y) |
void | setEyePos (volFloat x, volFloat y, volFloat z) |
void | setPixelWidth (volFloat d) |
void | setPixelHeight (volFloat d) |
volFloat | getPixelWidth () |
volFloat | getPixelHeight () |
go3Vector< volFloat > & | getNormal () |
const go3Vector< volFloat > & | getNormal () const |
void | setNormal (go3Vector< volFloat > &v) |
go3Vector< volFloat > & | getUp () |
const go3Vector< volFloat > & | getUp () const |
void | setUp (go3Vector< volFloat > &u) |
void | setEyeDistance (volFloat f) |
volFloat | getEyeDistance () const |
virtual void | operator= (goViewPlane &other) |
const go44Matrix< volFloat > & | getViewMatrix () const |
const go44Matrix< volFloat > & | getViewMatrix () |
void | update () |
go3Vector< volFloat > & | getU () |
go3Vector< volFloat > & | getV () |
go3Vector< volFloat > & | getEyePos () |
void | calculateUpperLeft (go3Vector< volFloat > &ul) |
void | calculateUpperRight (go3Vector< volFloat > &ur) |
void | calculateLowerLeft (go3Vector< volFloat > &ll) |
void | calculateLowerRight (go3Vector< volFloat > &lr) |
void | scale (volFloat factor) |
void | rotate (volFloat angle, Vol::GO_ROTATION_AXIS ax) |
![]() | |
goObjectBase () | |
Constructor. | |
virtual | ~goObjectBase () |
Destructor. More... | |
const char * | getClassName () const |
Returns the class name. More... | |
int | getClassID () const |
virtual goSize_t | memoryUsage () const |
Returns the size of this object or some measure of its memory consumption. More... | |
void | setObjectName (const char *name) |
Set name string for an object. More... | |
void | setObjectName (const goString &name) |
Set name string for an object. More... | |
const goString & | getObjectName () const |
Get the object name. More... | |
virtual bool | writeObjectFile (FILE *) const |
Write object to a file. More... | |
virtual bool | readObjectFile (FILE *) |
Read object from a file. More... | |
void | connectObject (goObjectBase *object) |
Connects an object to this object. More... | |
void | disconnectObject (const goObjectBase *object) |
Disconnects an object from this object. | |
virtual bool | callObjectMethod (int methodID, goObjectMethodParameters *param=NULL) |
Call an object method by identifier. More... | |
virtual bool | queueObjectMethod (int methodID, goObjectMethodParameters *param=NULL, bool blocking=false) |
Enqueue a method call to an internal list of methods. More... | |
bool | callQueuedMethods () |
Call all queued methods. More... | |
Protected Attributes | |
go3Vector< volFloat > | normal |
go3Vector< volFloat > | up |
volFloat | rotAngleX |
volFloat | rotAngleY |
volFloat | rotAngleZ |
go3Vector< volFloat > | position |
go3Vector< volFloat > | size |
go3Vector< volFloat > | screenSize |
go3Vector< volFloat > | u |
go3Vector< volFloat > | v |
volFloat | pixelWidth |
volFloat | pixelHeight |
volFloat | eyeDistance |
go3Vector< volFloat > | eyePos |
go44Matrix< volFloat > | Tproj |
Additional Inherited Members | |
![]() | |
void | setClassID (int id) |
Sets the class name. | |
void | printClassMessage (const char *msg) |
Sets the class name. More... | |
void | printClassMessage (goString &msg) |
Prints an informational message to the calling console. More... | |
void | sendObjectMessage (int messageID, void *data=NULL) |
Sends a message to all connected objects. | |
void | sendObjectMessage (goObjectBase *object, int messageID, void *data=NULL) |
Sends a message to a specific object. | |
virtual void | receiveObjectMessage (const goObjectMessage &message) |
Receive a message. More... | |
Storage class for the parameters describing a view plane in 3D space.
void goViewPlane::calculateLowerLeft | ( | go3Vector< volFloat > & | ll | ) |
ll | Reference to a go3Vector in which the coordinates are stored. |
void goViewPlane::calculateLowerRight | ( | go3Vector< volFloat > & | lr | ) |
lr | Reference to a go3Vector in which the coordinates are stored. |
void goViewPlane::calculateUpperLeft | ( | go3Vector< volFloat > & | ul | ) |
Calculates the upper left "visible" corner on the view plane in coordinates relative to the world coordinate system (NOT the view coordinate system!)
ul | Reference to a go3Vector in which the coordinates are stored. |
void goViewPlane::calculateUpperRight | ( | go3Vector< volFloat > & | ur | ) |
ur | Reference to a go3Vector in which the coordinates are stored. |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
const go44Matrix<volFloat>& goViewPlane::getViewMatrix | ( | ) | const |
|
virtual |
Copies the properties of another viewplane into this one. You should call update() after a call to operator=.
other | Viewplane to be copied from. |
|
inline |
Scales all scalable values with factor. Call update() afterwards.
factor | double Factor to multiplicate with. |
|
inline |
Sets the eye distance, that is the distance from the eye position to the principal point of the viewplane, in world coordinate units.
f | Eye distance. |
|
inline |
Sets the eye position for the view.
p | Vector which contains the new eye position. |
|
inline |
Sets the plane normal of the view plane.
v | Plane normal. |
|
inline |
Sets the height of one pixel in world coordinate units. Used to calculate the screen size when you set the size of the viewplane itself.
d | Height of one screen pixel in world coordinate units. |
|
inline |
Sets the with of one pixel in world coordinate units. Used to calculate the screen size when you set the size of the viewplane itself.
d | Width of one screen pixel in world coordinate units. |
|
inline |
Sets the intended screen size for this viewplane in pixels.
|
inline |
Sets the size of the view plane in pixels. Only the x and y components of the parameter are valid.
s | Size of the view plane. |
|
inline |
Size only has a meaning if you want it to. You could, for example, use the size of the screen to calculate some size of your plane. Or, you might just want to set it to one. Or whatever.
|
inline |
Sets the up-vector of the view plane, that is the vector that points upwards from the viewer.