pFunctionPoint Class Reference

#include <pFunctionPoint.h>

List of all members.

Public Member Functions

 pFunctionPoint (int x, int y)
int getRealX ()
int getRealY ()
void setRealX (int x)
void setRealY (int y)
void setHasColor (bool hasColor)
bool getHasColorForLevel ()

Private Attributes

int realX
int realY
bool hasColorForLevel

Detailed Description

Definition at line 27 of file pFunctionPoint.h.


Constructor & Destructor Documentation

pFunctionPoint::pFunctionPoint ( int  x,
int  y 
)

Create a point of the function.

Parameters:
x The x value
y The y value

Definition at line 29 of file pFunctionPoint.cxx.

00030 {
00031         realX = x;
00032         realY = y;
00033         hasColorForLevel = false;
00034 }


Member Function Documentation

bool pFunctionPoint::getHasColorForLevel (  ) 

Definition at line 64 of file pFunctionPoint.cxx.

References hasColorForLevel.

00065 {
00066         return hasColorForLevel;
00067 }

int pFunctionPoint::getRealX (  ) 
int pFunctionPoint::getRealY (  ) 
void pFunctionPoint::setHasColor ( bool  hasColor  ) 

Definition at line 57 of file pFunctionPoint.cxx.

References hasColorForLevel.

00058 {
00059         hasColorForLevel = hasColor;
00060 }

void pFunctionPoint::setRealX ( int  x  )  [inline]

Sets the x-value of the point

Parameters:
x 

Definition at line 54 of file pFunctionPoint.h.

References realX.

Referenced by pPlotterWindow::onMouseMove().

00055         {
00056                 realX=x;
00057         }

Here is the caller graph for this function:

void pFunctionPoint::setRealY ( int  y  )  [inline]

Sets the y-value of the point

Parameters:
y 

Definition at line 62 of file pFunctionPoint.h.

References realY.

00063         {
00064                 realY=y;
00065         }


Member Data Documentation

Definition at line 92 of file pFunctionPoint.h.

Referenced by getHasColorForLevel(), and setHasColor().

int pFunctionPoint::realX [private]

Definition at line 84 of file pFunctionPoint.h.

Referenced by getRealX(), and setRealX().

int pFunctionPoint::realY [private]

Definition at line 88 of file pFunctionPoint.h.

Referenced by getRealY(), and setRealY().


The documentation for this class was generated from the following files:

Generated on 18 Mar 2010 for creaMaracasVisu_lib by  doxygen 1.6.1