manualViewPoints Class Reference

#include <manualViewPoints.h>

Inheritance diagram for manualViewPoints:
Inheritance graph
[legend]
Collaboration diagram for manualViewPoints:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 manualViewPoints ()
void CopyAttributesTo (manualViewPoints *cloneObject)
virtual ~manualViewPoints ()
virtual manualViewPointsClone ()
virtual int GetType ()
virtual bool ifTouchContour (int x, int y, int z)
virtual void Refresh ()
virtual void RefreshContour ()
virtual void RemoveSplineActor ()
virtual void AddSplineActor ()
virtual void ConstructVTKObjects ()
virtual void Save (FILE *pFile)
virtual void Open (FILE *pFile)
void AddPoint ()
virtual void AddPoint (manualViewPoint *manualViewPoint)
void InsertPoint (int id)
void DeleteContour ()
void DeletePoint (int x, int y, int z)
virtual void DeletePoint (int id)
virtual void UpdateViewPoint (int id)
virtual void UpdateViewPoints ()
void SetSelected (bool selected)
void SetPosibleSelected (bool posibleSelected)
bool GetSelected ()
bool GetPosibleSelected ()
void DeleteSelectedPoints ()
bool GetEditable ()
void SetEditable (bool *condition)
virtual int GetIdPoint (int x, int y, int z)
void SelectPoint (int i, bool select)
void SelectLstPoints ()
void SelectAllPoints (bool select)
virtual int SelectPosiblePoint (int x, int y, int z)
bool SelectPosibleContour (int x, int y, int z)
void SelectAllPossibleSelected (bool select)
void SetPointSelected (int id, bool select)
void SetPointPosibleSelected (int id, bool select)
void SetIfViewControlPoints (bool ifShow)
bool GetIfViewControlPoints ()
void UnSelectPoint (int i)
void UnSelectLstPoints ()
void UnSelectAllPoints ()
void SetModel (manualBaseModel *manContModel)
void SetWxVtkBaseView (wxVtkBaseView *wxvtkbaseview)
int GetNumberOfPoints ()
void CreateNewContour ()
double * GetVectorPointsXManualContour ()
double * GetVectorPointsYManualContour ()
double * GetVectorPointsZManualContour ()
void UpdateColorActor ()
void SetRange (double range)
double GetRange ()
void SetZ (int z)
int GetZ ()
wxVtkBaseViewGetWxVtkBaseView ()
virtual void InitMove (int x, int y, int z)
virtual void MoveContour (int x, int y, int z)
virtual void MoveContour (int horizontalUnits, int verticalUnits)
virtual void GetMinMax (double &minX, double &minY, double &minZ, double &maxX, double &maxY, double &maxZ)
virtual void TransfromCoordViewWorld (double &X, double &Y, double &Z, int type=2)
void ClearContour ()
virtual void ClearPoint (int id)
void SetVisible (bool ok)
void SetShowText (bool ok)
void GetSpacing (double spc[3])
void SetSpacing (double spc[3])
void SetColorNormalContour (double r, double g, double b)
void GetColorNormalContour (double &r, double &g, double &b)
void SetColorEditContour (double r, double g, double b)
void GetColorEditContour (double &r, double &g, double &b)
void SetColorSelectContour (double r, double g, double b)
void GetColorSelectContour (double &r, double &g, double &b)
void AddCompleteContourActor (bool ifControlPoints=false)
void RemoveCompleteContourActor ()
virtual void AddControlPoints ()
virtual void RemoveControlPoints ()
void AddTextActor ()
void RemoveTextActor ()
void InitTextActor ()
void SetWidthLine (double width)
double GetWidthLine ()

Protected Member Functions

virtual void RefreshText ()

Protected Attributes

double _range
double _coulorEdit_r
double _coulorEdit_g
double _coulorEdit_b
double _coulorNormal_r
double _coulorNormal_g
double _coulorNormal_b
double _coulorSelection_r
double _coulorSelection_g
double _coulorSelection_b
double _widthline
wxVtkBaseView_wxvtkbaseview
bool _selected
bool * _editable
bool _posibleSelected
bool _viewControlPoints
bool _show_text
int _id_viewPoint_for_text
vtkTextActor * _textActor
manualBaseModel_manContModel
vtkPoints * _pts
int _sizePointsContour
std::vector< manualViewPoint * > _lstViewPoints
double _spc [3]

Private Attributes

std::vector< manualViewPoint * > _copyViewPoints

Detailed Description

Definition at line 12 of file manualViewPoints.h.


Constructor & Destructor Documentation

manualViewPoints::manualViewPoints (  ) 

Definition at line 4 of file manualViewPoints.cpp.

Referenced by Clone().

00005 {
00006 }

Here is the caller graph for this function:

manualViewPoints::~manualViewPoints (  )  [virtual]

Definition at line 9 of file manualViewPoints.cpp.

References _copyViewPoints.

00010 {
00011         int i,size=_copyViewPoints.size();
00012         for (i=0;i<size; i++){
00013                 delete _copyViewPoints[i];
00014         }
00015         _copyViewPoints.clear();
00016 }


Member Function Documentation

void manualViewBaseContour::AddCompleteContourActor ( bool  ifControlPoints = false  )  [inherited]

Definition at line 81 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_viewControlPoints, manualViewBaseContour::_wxvtkbaseview, manualViewBaseContour::AddControlPoints(), manualViewBaseContour::AddSplineActor(), manualViewBaseContour::AddTextActor(), wxVtkBaseView::GetRenderer(), manualViewBaseContour::Refresh(), and manualViewBaseContour::RefreshContour().

Referenced by manualViewBaseContour::CreateNewContour().

00082 {
00083         _viewControlPoints = ifControlPoints;
00084          /*vtkRenderer * theRenderer = */  _wxvtkbaseview->GetRenderer();  // JPRx ??
00085          //Adding the spline
00086          AddSplineActor();
00087 
00088          AddTextActor();
00089          //Adding each control point
00090          if( ifControlPoints )
00091                 AddControlPoints();
00092          RefreshContour();
00093          Refresh();
00094 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::AddControlPoints (  )  [virtual, inherited]

Definition at line 172 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_viewControlPoints, manualViewBaseContour::_wxvtkbaseview, wxVtkBaseView::GetRenderer(), and manualViewBaseContour::SetIfViewControlPoints().

Referenced by manualViewBaseContour::AddCompleteContourActor(), and manualContourControler::MouseDLeft().

00173 {
00174         vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
00175         SetIfViewControlPoints( true );
00176          if( _viewControlPoints )
00177          {
00178                 int i,size=_lstViewPoints.size();
00179                 for (i=0;i<size; i++)
00180                 {
00181                         vtkActor * pointActor = _lstViewPoints[i]->GetVtkActor();
00182                         theRenderer->AddActor( pointActor );
00183                 }
00184          }
00185 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::AddPoint ( manualViewPoint manualViewPoint  )  [virtual, inherited]

Definition at line 343 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_spc, manualViewBaseContour::_wxvtkbaseview, manualViewPoint::CreateVtkPointActor(), wxVtkBaseView::GetRenderer(), and manualViewPoint::SetSpacing().

00344 {
00345         _lstViewPoints.push_back( manualViewPoint );
00346 
00347         // EED 3 oct 2006
00348         manualViewPoint->SetSpacing(_spc);
00349 
00350         vtkActor *actor = manualViewPoint->CreateVtkPointActor();
00351         _wxvtkbaseview->GetRenderer()->AddActor( actor );       
00352 }

Here is the call graph for this function:

void manualViewBaseContour::AddPoint (  )  [inherited]
void manualViewPoints::AddSplineActor (  )  [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 137 of file manualViewPoints.cpp.

References _copyViewPoints, manualViewBaseContour::_wxvtkbaseview, and wxVtkBaseView::GetRenderer().

00138 {
00139         int i,size=_copyViewPoints.size();
00140         for (i=0;i<size;i++)
00141         {
00142                 _wxvtkbaseview->GetRenderer()->AddActor( _copyViewPoints[i]->GetVtkActor() );
00143         }
00144 }

Here is the call graph for this function:

void manualViewBaseContour::AddTextActor (  )  [inherited]

Definition at line 187 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_textActor, manualViewBaseContour::_wxvtkbaseview, and wxVtkBaseView::GetRenderer().

Referenced by manualViewBaseContour::AddCompleteContourActor(), and manualContourControler::MouseDLeft().

00188 {
00189         _wxvtkbaseview->GetRenderer()->AddActor2D( _textActor );
00190 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::ClearContour (  )  [inherited]

Definition at line 854 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_contourVtkActor, manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_wxvtkbaseview, manualViewBaseContour::ClearPoint(), manualViewBaseContour::DeleteVtkObjects(), wxVtkBaseView::GetRenderer(), and manualViewBaseContour::Refresh().

Referenced by manualContourContainer::clearLumen(), and manualContourContainer::clearWall().

00855 {
00856         if (_contourVtkActor!=NULL){
00857                 _wxvtkbaseview->GetRenderer()->RemoveActor( _contourVtkActor );
00858         }
00859         DeleteVtkObjects();
00860         int i,size=_lstViewPoints.size();
00861         for (i=0;i<size;i++){
00862                 ClearPoint(0);
00863         }
00864         Refresh();
00865 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::ClearPoint ( int  id  )  [virtual, inherited]

Reimplemented in manualViewContour.

Definition at line 867 of file manualViewBaseContour.cpp.

References manualViewBaseContour::DeletePoint().

Referenced by manualViewBaseContour::ClearContour().

00868 {
00869         DeletePoint(id);
00870 }

Here is the call graph for this function:

Here is the caller graph for this function:

manualViewPoints * manualViewPoints::Clone (  )  [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 20 of file manualViewPoints.cpp.

References CopyAttributesTo(), and manualViewPoints().

00021 {
00022         manualViewPoints * clone = new manualViewPoints();
00023         CopyAttributesTo(clone);
00024         return clone;
00025 }

Here is the call graph for this function:

void manualViewPoints::ConstructVTKObjects (  )  [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 131 of file manualViewPoints.cpp.

References manualViewBaseContour::InitTextActor().

00132 {
00133         InitTextActor();
00134 }

Here is the call graph for this function:

void manualViewPoints::CopyAttributesTo ( manualViewPoints cloneObject  ) 

Reimplemented from manualViewBaseContour.

Definition at line 28 of file manualViewPoints.cpp.

Referenced by Clone().

00029 {
00030         // Fathers object
00031         manualViewBaseContour::CopyAttributesTo(cloneObject);
00032 }

Here is the caller graph for this function:

void manualViewBaseContour::CreateNewContour (  )  [inherited]

Definition at line 305 of file manualViewBaseContour.cpp.

References manualViewBaseContour::AddCompleteContourActor(), and manualViewBaseContour::ConstructVTKObjects().

Referenced by manualContourBaseControler::CreateNewManualContour(), manualContourBaseControler::ResetContour(), manualContour3VControler::ResetContour_Others(), and wxMaracasCoutourTool::SetControlPoints().

00306 {
00307         ConstructVTKObjects();
00308         /*
00309         _wxvtkbaseview->GetRenderer()->AddActor( _contourVtkActor );
00310         _wxvtkbaseview->GetRenderer()->AddActor2D(_textActor);*/
00311         AddCompleteContourActor();
00312 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::DeleteContour (  )  [inherited]

Definition at line 367 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::DeletePoint(), manualViewBaseContour::DeleteVtkObjects(), manualViewBaseContour::Refresh(), and manualViewBaseContour::RemoveCompleteContourActor().

Referenced by manualContourBaseControler::DeleteContour(), manualContour3VControler::ResetContour_Others(), and wxMaracasCoutourTool::SetControlPoints().

00368 {
00369         RemoveCompleteContourActor();
00370         /*if (_contourVtkActor!=NULL){
00371                 _wxvtkbaseview->GetRenderer()->RemoveActor( _contourVtkActor );
00372         }*/
00373         DeleteVtkObjects();
00374         int i,size=_lstViewPoints.size();
00375         for (i=0;i<size;i++){
00376                 manualViewBaseContour::DeletePoint(0);
00377         }
00378         Refresh();
00379 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::DeletePoint ( int  id  )  [virtual, inherited]

Reimplemented in manualViewContour.

Definition at line 381 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_wxvtkbaseview, wxVtkBaseView::GetRenderer(), manualViewPoint::GetVtkActor(), and manualViewBaseContour::Refresh().

00382 {
00383         int size=_lstViewPoints.size();
00384         if ( (id>=0) && (id<size) ){
00385                 manualViewPoint         *mvp    =_lstViewPoints[id];
00386 //EED ups1
00387 //              _handlePicker->DeletePickList(mvp->GetVtkActor());
00388                 _wxvtkbaseview->GetRenderer()->RemoveActor( mvp->GetVtkActor() );
00389                 std::vector<manualViewPoint*>::iterator itNum = _lstViewPoints.begin() + id;
00390                 _lstViewPoints.erase(itNum);
00391                 delete mvp;
00392                 Refresh();
00393         }
00394 }

Here is the call graph for this function:

void manualViewBaseContour::DeletePoint ( int  x,
int  y,
int  z 
) [inherited]

Definition at line 396 of file manualViewBaseContour.cpp.

References manualViewBaseContour::GetIdPoint().

Referenced by manualViewBaseContour::ClearPoint(), manualContourBaseControler::DeleteActualMousePoint(), manualContour3VControler::DeleteActualMousePoint_Others(), manualViewBaseContour::DeleteContour(), and manualViewBaseContour::DeleteSelectedPoints().

00397 {
00398         int id=GetIdPoint(x,y,z);
00399         if (id!=-1){
00400                 DeletePoint(id);
00401         }
00402 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::DeleteSelectedPoints (  )  [inherited]

Definition at line 434 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::DeletePoint(), manualViewBaseContour::GetSelected(), and manualViewBaseContour::Refresh().

00435 {
00436         int i,size=_lstViewPoints.size();
00437         for (i=size-1;i>=0;i--){
00438                 if (_lstViewPoints[i]->GetSelected()==true){
00439                         DeletePoint(i);
00440                 }
00441         }
00442         Refresh();
00443 }

Here is the call graph for this function:

void manualViewBaseContour::GetColorEditContour ( double &  r,
double &  g,
double &  b 
) [inherited]
void manualViewBaseContour::GetColorNormalContour ( double &  r,
double &  g,
double &  b 
) [inherited]
void manualViewBaseContour::GetColorSelectContour ( double &  r,
double &  g,
double &  b 
) [inherited]
bool manualViewBaseContour::GetEditable (  )  [inherited]

Definition at line 414 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_editable.

Referenced by RefreshContour(), manualViewBaseContour::SelectPosibleContour(), and manualViewBaseContour::UpdateColorActor().

00415 {
00416         return *_editable;
00417 }

Here is the caller graph for this function:

int manualViewBaseContour::GetIdPoint ( int  x,
int  y,
int  z 
) [virtual, inherited]
bool manualViewBaseContour::GetIfViewControlPoints (  )  [inherited]

Definition at line 468 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_viewControlPoints.

Referenced by manualViewBaseContour::CopyAttributesTo().

00469 {
00470         return _viewControlPoints;
00471 }

Here is the caller graph for this function:

void manualViewBaseContour::GetMinMax ( double &  minX,
double &  minY,
double &  minZ,
double &  maxX,
double &  maxY,
double &  maxZ 
) [virtual, inherited]

Definition at line 783 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_manContModel, manualBaseModel::GetManualPoint(), manualBaseModel::GetSizeLstPoints(), manualPoint::GetX(), manualPoint::GetY(), and manualPoint::GetZ().

00784 {
00785         double  pp[3];
00786         manualPoint *mp;
00787         int i;
00788         int size=_manContModel->GetSizeLstPoints();
00789         minX=99999;
00790         minY=99999;
00791         maxX=-99999;
00792         maxY=-99999;
00793         bool ifFindZ = minZ!=-1.0 && maxZ!=-1.0;
00794         if ( ifFindZ )
00795         {
00796                 minZ=99999;
00797                 maxZ=-99999;
00798         }
00799         for( i = 0; i < size; i++ )
00800         {
00801                 mp=_manContModel->GetManualPoint(i);
00802                 pp[0]=mp->GetX();
00803                 pp[1]=mp->GetY();
00804                 if ( ifFindZ )
00805                         pp[2]=mp->GetZ();
00806 
00807                 // min X
00808                 if (pp[0]<minX)
00809                 {
00810                         minX=pp[0];
00811                 }
00812                 //min Y
00813                 if (pp[1]<minY)
00814                 {
00815                         minY=pp[1];
00816                 }
00817                 //max X
00818                 if (pp[0]>maxX)
00819                 {
00820                         maxX=pp[0];
00821                 }
00822                 // max Y
00823                 if (pp[1]>maxY)
00824                 {
00825                         maxY=pp[1];
00826                 }
00827                 if ( ifFindZ )
00828                 {
00829                         // min Z
00830                         if (pp[2]<minZ)
00831                         {
00832                                 minZ=pp[2];
00833                         }
00834                         // max Z
00835                         if (pp[2]>maxZ)
00836                         {
00837                                 maxZ=pp[2];
00838                         }
00839                 }
00840         }
00841         if ( size<1 )
00842         {
00843                 minX = 0;
00844                 maxX = 0;
00845 
00846                 minY = 0;
00847                 maxY = 0;
00848 
00849                 minZ = 0;
00850                 maxZ = 0;
00851         }
00852 }

Here is the call graph for this function:

int manualViewBaseContour::GetNumberOfPoints (  )  [inherited]
bool manualViewBaseContour::GetPosibleSelected (  )  [inherited]

Definition at line 429 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_posibleSelected.

Referenced by manualViewBaseContour::CopyAttributesTo(), manualContourBaseControler::MouseDLeft(), and manualViewContour::RefreshText().

00430 {
00431         return _posibleSelected;
00432 }

Here is the caller graph for this function:

double manualViewBaseContour::GetRange (  )  [inherited]
bool manualViewBaseContour::GetSelected (  )  [inherited]

Definition at line 424 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_selected.

Referenced by manualViewBaseContour::CopyAttributesTo(), and manualViewBaseContour::DeleteSelectedPoints().

00425 {
00426         return _selected;
00427 }

Here is the caller graph for this function:

void manualViewBaseContour::GetSpacing ( double  spc[3]  )  [inherited]

Definition at line 907 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_spc.

Referenced by manualViewBullEye::ConstructVTKObjects().

00908 {
00909         spc[0] = _spc[0];
00910         spc[1] = _spc[1];
00911         spc[2] = _spc[2];
00912 }

Here is the caller graph for this function:

int manualViewPoints::GetType (  )  [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 35 of file manualViewPoints.cpp.

00036 {
00037         return 7;
00038 }

double * manualViewBaseContour::GetVectorPointsXManualContour (  )  [inherited]

Definition at line 573 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_pts, and manualViewBaseContour::_sizePointsContour.

Referenced by manualContourBaseControler::GetVectorPointsXManualContour().

00573                                                             {
00574         double pp[3];
00575         int i,size = _sizePointsContour;
00576         double *vx = (double*)malloc(sizeof(double)*size);
00577         for (i=0;i<size;i++){
00578                 _pts->GetPoint(i,pp);
00579                 vx[i]=pp[0];
00580         }
00581         return vx;
00582 }

Here is the caller graph for this function:

double * manualViewBaseContour::GetVectorPointsYManualContour (  )  [inherited]

Definition at line 584 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_pts, and manualViewBaseContour::_sizePointsContour.

Referenced by manualContourBaseControler::GetVectorPointsYManualContour().

00585 {
00586         double pp[3];
00587         int i,size = _sizePointsContour;
00588         double *vy = (double*)malloc(sizeof(double)*size);
00589         for (i=0;i<size;i++){
00590                 _pts->GetPoint(i,pp);
00591                 vy[i]=pp[1];
00592         }
00593         return vy;
00594 }

Here is the caller graph for this function:

double * manualViewBaseContour::GetVectorPointsZManualContour (  )  [inherited]

Definition at line 596 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_pts, and manualViewBaseContour::_sizePointsContour.

00597 {
00598         double pp[3];
00599         int i,size = _sizePointsContour;
00600         double *vz = (double*)malloc(sizeof(double)*size);
00601         for (i=0;i<size;i++){
00602                 _pts->GetPoint(i,pp);
00603                 vz[i]=pp[2];
00604         }
00605         return vz;
00606 }

double manualViewBaseContour::GetWidthLine (  )  [inherited]

Definition at line 226 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_widthline.

Referenced by manualViewBullEye::ConstructVTKObjects().

00227 {
00228         return _widthline;
00229 }

Here is the caller graph for this function:

wxVtkBaseView * manualViewBaseContour::GetWxVtkBaseView (  )  [inherited]
int manualViewBaseContour::GetZ (  )  [inherited]

Definition at line 763 of file manualViewBaseContour.cpp.

Referenced by manualViewBaseContour::CopyAttributesTo().

00764 {
00765 //      return _Z;
00766         return 0;
00767 }

Here is the caller graph for this function:

bool manualViewPoints::ifTouchContour ( int  x,
int  y,
int  z 
) [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 42 of file manualViewPoints.cpp.

References manualViewBaseContour::_manContModel, manualViewBaseContour::_range, manualViewBaseContour::_spc, manualBaseModel::GetIdPoint(), and manualViewBaseContour::TransfromCoordViewWorld().

00043 {
00044         bool result=false;
00045         double xx=x;
00046         double yy=y;
00047         double zz=z;
00048         TransfromCoordViewWorld(xx,yy,zz);
00049 
00050 //EED 27 sep 2006
00051         xx = xx * _spc[0];
00052         yy = yy * _spc[1];
00053         zz = zz * _spc[2];
00054 
00055         int id = _manContModel->GetIdPoint(xx,yy,zz,_range,2);
00056 
00057         if(id!=-1){
00058                 result = true;
00059         }
00060         
00061 
00062         return result;
00063 }

Here is the call graph for this function:

void manualViewBaseContour::InitMove ( int  x,
int  y,
int  z 
) [virtual, inherited]
void manualViewBaseContour::InitTextActor (  )  [inherited]

Definition at line 286 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_textActor.

Referenced by ConstructVTKObjects(), and manualViewBaseContour::ConstructVTKObjects().

00287 {
00288         //      Text
00289         _textActor = vtkTextActor::New();
00290 //      _textActor->SetDisplayPosition(200, 200);
00291         _textActor->SetInput("00");
00292         // Set coordinates to match the old vtkScaledTextActor default value
00293 //      _textActor->GetPosition2Coordinate()->SetCoordinateSystemToNormalizedViewport();
00294 //      _textActor->GetPosition2Coordinate()->SetValue( 0.2 , 0.2 );
00295         _textActor->GetPositionCoordinate()->SetCoordinateSystemToWorld ();
00296 //      _textActor->GetPositionCoordinate()->SetValue( 0.8 , 0.8 );
00297 
00298         vtkTextProperty *tprop = _textActor->GetTextProperty();
00299         tprop->SetFontSize(14);
00300         tprop->SetFontFamilyToArial();
00301         tprop->SetColor(0, 0, 1);
00302 }

Here is the caller graph for this function:

void manualViewBaseContour::InsertPoint ( int  id  )  [inherited]

Definition at line 355 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_spc, manualViewBaseContour::_wxvtkbaseview, manualViewPoint::CreateVtkPointActor(), wxVtkBaseView::GetRenderer(), manualViewBaseContour::GetWxVtkBaseView(), and manualViewPoint::SetSpacing().

Referenced by manualContourBaseControler::InsertPoint(), manualContour3VControler::InsertPoint(), and manualContour3VControler::InsertPoint_Others().

00356 {
00357         manualViewPoint         *mvp    = new manualViewPoint( this->GetWxVtkBaseView() );
00358 
00359 // EED 3 oct 2006
00360         mvp->SetSpacing(_spc);
00361 
00362         std::vector<manualViewPoint*>::iterator itNum = _lstViewPoints.begin() + id;
00363         _lstViewPoints.insert(itNum,mvp);
00364         _wxvtkbaseview->GetRenderer()->AddActor( mvp->CreateVtkPointActor() );
00365 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::MoveContour ( int  horizontalUnits,
int  verticalUnits 
) [virtual, inherited]

Reimplemented in manualViewContour.

Definition at line 778 of file manualViewBaseContour.cpp.

00779 {
00780 
00781 }

void manualViewBaseContour::MoveContour ( int  x,
int  y,
int  z 
) [virtual, inherited]
void manualViewBaseContour::Open ( FILE *  pFile  )  [virtual, inherited]

Reimplemented in manualViewContour.

Definition at line 76 of file manualViewBaseContour.cpp.

00077 {
00078 }

void manualViewPoints::Refresh (  )  [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 66 of file manualViewPoints.cpp.

References RefreshContour().

00067 {
00068         RefreshContour();
00069         manualViewBaseContour::Refresh();
00070 }

Here is the call graph for this function:

void manualViewPoints::RefreshContour (  )  [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 73 of file manualViewPoints.cpp.

References _copyViewPoints, manualViewBaseContour::_coulorEdit_b, manualViewBaseContour::_coulorEdit_g, manualViewBaseContour::_coulorEdit_r, manualViewBaseContour::_coulorNormal_b, manualViewBaseContour::_coulorNormal_g, manualViewBaseContour::_coulorNormal_r, manualViewBaseContour::_coulorSelection_b, manualViewBaseContour::_coulorSelection_g, manualViewBaseContour::_coulorSelection_r, manualViewBaseContour::_manContModel, manualViewBaseContour::_posibleSelected, manualViewBaseContour::_range, manualViewBaseContour::_selected, manualViewBaseContour::_wxvtkbaseview, manualViewPoint::CreateVtkPointActor(), manualViewBaseContour::GetEditable(), manualBaseModel::GetManualPoint(), manualViewBaseContour::GetNumberOfPoints(), wxVtkBaseView::GetRenderer(), manualViewPoint::GetVtkActor(), manualPoint::GetX(), manualPoint::GetY(), and manualViewPoint::SetPositionXY().

Referenced by Refresh().

00074 {
00075         int np = GetNumberOfPoints();
00076         int copynp= _copyViewPoints.size();
00077 
00078         while(copynp!=np){
00079 
00080                 if(copynp<np)
00081                 {
00082                         manualViewPoint *mvp = new manualViewPoint(_wxvtkbaseview);
00083                         vtkActor *actor = mvp->CreateVtkPointActor();
00084                         _wxvtkbaseview->GetRenderer()->AddActor( actor );       
00085 
00086                         _copyViewPoints.push_back(mvp);
00087                 }//if
00088                 else if(copynp>np)
00089                 {
00090                         manualViewPoint *t = _copyViewPoints[0];
00091                         _wxvtkbaseview->GetRenderer()->RemoveActor( t->GetVtkActor() );
00092                         std::vector<manualViewPoint*>::iterator itNum = _copyViewPoints.begin();
00093                         _copyViewPoints.erase(itNum);                   
00094                         delete t;
00095                 }// else if
00096                 copynp= _copyViewPoints.size();
00097 
00098         }// while
00099 
00100         int i;
00101         for(i=0;i<np;i++)
00102         {
00103                 double xx = _manContModel->GetManualPoint(i)->GetX();
00104                 double yy = _manContModel->GetManualPoint(i)->GetY();
00105                 double zz = 900; // RaC REVISAR !!
00106 
00107                 manualViewPoint *mv = _copyViewPoints[i];
00108 
00109                 //Paints new Rectangular points bigger than the actual control points
00110                 mv->SetPositionXY(xx, yy, _range*2, zz);
00111 
00112                 vtkActor *_pointVtkActor = mv->GetVtkActor();
00113 
00114                 _pointVtkActor->GetProperty()->SetDiffuseColor( _coulorNormal_r , _coulorNormal_g , _coulorNormal_b );
00115                 if (_posibleSelected || (_posibleSelected && GetEditable() ) )
00116                 {
00117                         _pointVtkActor->GetProperty()->SetDiffuseColor( _coulorEdit_r , _coulorEdit_g , _coulorEdit_b );
00118                 }
00119                 if( _selected )
00120                 {
00121                         _pointVtkActor->GetProperty()->SetDiffuseColor( _coulorSelection_r , _coulorSelection_g , _coulorSelection_b );
00122                 }
00123 
00124                 //IF you want to customize the points which are going to be painted
00125                 //mv->UpdateColorActor(_colorViewPoints_r,_colorViewPoints_g,_colorViewPoints_b);
00126                 //mv->SetWidthLine(1.3);
00127         }
00128 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::RefreshText (  )  [protected, virtual, inherited]

Reimplemented in manualViewContour.

Definition at line 634 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_textActor.

Referenced by manualViewBaseContour::Refresh().

00635 {
00636         if( _textActor!=NULL)
00637                 _textActor -> SetInput("00");
00638 }

Here is the caller graph for this function:

void manualViewBaseContour::RemoveCompleteContourActor (  )  [inherited]

Definition at line 97 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_wxvtkbaseview, wxVtkBaseView::GetRenderer(), manualViewBaseContour::Refresh(), manualViewBaseContour::RefreshContour(), manualViewBaseContour::RemoveControlPoints(), manualViewBaseContour::RemoveSplineActor(), and manualViewBaseContour::RemoveTextActor().

Referenced by manualViewBaseContour::DeleteContour().

00098 {
00099         /*vtkRenderer * theRenderer =*/  _wxvtkbaseview->GetRenderer(); // JPRx ??
00100          //Removing the spline
00101         RemoveSplineActor();
00102         RemoveTextActor();
00103 
00104         //Removing each point
00105         RemoveControlPoints();
00106         RefreshContour();
00107         Refresh();
00108 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::RemoveControlPoints (  )  [virtual, inherited]

Definition at line 158 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_wxvtkbaseview, wxVtkBaseView::GetRenderer(), and manualViewBaseContour::SetIfViewControlPoints().

Referenced by manualContourControler::MouseMove(), manualViewBaseContour::RemoveCompleteContourActor(), and manualContourBaseControler::SetEditable().

00159 {
00160         if (_wxvtkbaseview!=NULL){
00161                 vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
00162                 int i,size=_lstViewPoints.size();
00163                 for (i=0;i<size; i++)
00164                 {
00165                         vtkActor * pointActor = _lstViewPoints[i]->GetVtkActor();
00166                         theRenderer->RemoveActor( pointActor );
00167                 } // for
00168         } // if
00169         SetIfViewControlPoints( false );
00170 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewPoints::RemoveSplineActor (  )  [virtual]

Reimplemented from manualViewBaseContour.

Definition at line 147 of file manualViewPoints.cpp.

References _copyViewPoints, manualViewBaseContour::_wxvtkbaseview, and wxVtkBaseView::GetRenderer().

00148 {
00149         int i,size=_copyViewPoints.size();
00150         for (i=0;i<size;i++)
00151         {
00152                 _wxvtkbaseview->GetRenderer()->RemoveActor(_copyViewPoints[i]->GetVtkActor());
00153 
00154         }
00155 }

Here is the call graph for this function:

void manualViewBaseContour::RemoveTextActor (  )  [inherited]

Definition at line 192 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_textActor, manualViewBaseContour::_wxvtkbaseview, and wxVtkBaseView::GetRenderer().

Referenced by manualViewBaseContour::RemoveCompleteContourActor().

00193 {
00194         _wxvtkbaseview->GetRenderer()->RemoveActor2D( _textActor );
00195 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::Save ( FILE *  pFile  )  [virtual, inherited]

Reimplemented in manualViewContour.

Definition at line 70 of file manualViewBaseContour.cpp.

References manualViewBaseContour::GetType().

00071 {
00072         fprintf(pFile,"TypeView %d\n", GetType() );
00073 }

Here is the call graph for this function:

void manualViewBaseContour::SelectAllPoints ( bool  select  )  [inherited]

Definition at line 455 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, and manualViewBaseContour::SelectPoint().

00456 {
00457         int i,size=_lstViewPoints.size();
00458         for (i=0;i<size;i++){
00459                 SelectPoint(i,select);
00460         }
00461 }

Here is the call graph for this function:

void manualViewBaseContour::SelectAllPossibleSelected ( bool  select  )  [inherited]

Definition at line 484 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, and manualViewBaseContour::SetPointPosibleSelected().

Referenced by manualContour3VControler::MouseMove_Others(), manualViewBaseContour::SelectPosiblePoint(), and manualView3DContour::SelectPosiblePoint().

00485 {
00486         int i,size=_lstViewPoints.size();
00487         for (i=0;i<size;i++){
00488                 SetPointPosibleSelected(i,select);
00489         }
00490 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::SelectLstPoints (  )  [inherited]

Definition at line 450 of file manualViewBaseContour.cpp.

00451 {
00452         // ToDo
00453 }

void manualViewBaseContour::SelectPoint ( int  i,
bool  select 
) [inherited]

Definition at line 445 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints.

Referenced by manualViewBaseContour::SelectAllPoints().

00446 {
00447         _lstViewPoints[i]->SetSelected(select);
00448 }

Here is the caller graph for this function:

bool manualViewBaseContour::SelectPosibleContour ( int  x,
int  y,
int  z 
) [inherited]

Definition at line 504 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_posibleSelected, manualViewBaseContour::_selected, manualViewBaseContour::GetEditable(), manualViewBaseContour::GetIdPoint(), manualViewBaseContour::ifTouchContour(), and manualViewBaseContour::SetPosibleSelected().

Referenced by manualContourBaseControler::MouseDLeft(), manualRotationToolControler::MouseMove(), manualRoiControler::MouseMove(), manualLineControler::MouseMove(), manualContourControler::MouseMove(), manualCircleControler::MouseMove(), and manualContourBaseControler::MouseReleaseLeft().

00505 {
00506         bool result=false;
00507         SetPosibleSelected(result);
00508     int id = GetIdPoint(x,y,z);
00509         
00510         if( !GetEditable() && !_selected && id!= -1)
00511         {
00512                 result=true;
00513                 _posibleSelected=true;          
00514         }
00515         else
00516         {
00517                 if ( (GetEditable()==true) && (id==-1 ) && (this->_lstViewPoints.size()>=2) )
00518                 {
00519                         if (ifTouchContour(x,y,z)==true)
00520                         {
00521                                 result=true;
00522                                 SetPosibleSelected(result);
00523                         }
00524                 }
00525 
00526                 if (GetEditable()==false)
00527                 {
00528                         if (ifTouchContour(x,y,z)==true)
00529                         {
00530                                 result=true;
00531                                 SetPosibleSelected(result);
00532                         }
00533                 }
00534 
00535         }
00536         return result;
00537 }

Here is the call graph for this function:

Here is the caller graph for this function:

int manualViewBaseContour::SelectPosiblePoint ( int  x,
int  y,
int  z 
) [virtual, inherited]

Reimplemented in manualView3DContour.

Definition at line 492 of file manualViewBaseContour.cpp.

References manualViewBaseContour::GetIdPoint(), manualViewBaseContour::SelectAllPossibleSelected(), and manualViewBaseContour::SetPointPosibleSelected().

Referenced by manualContourBaseControler::MouseDLeft(), manualRotationToolControler::MouseMove(), manualRoiControler::MouseMove(), manualLineControler::MouseMove(), manualContourControler::MouseMove(), and manualCircleControler::MouseMove().

00493 {
00494         SelectAllPossibleSelected(false);
00495 
00496     int id = GetIdPoint(x,y,z);
00497         if (id!=-1)
00498         {
00499                 SetPointPosibleSelected(id,true);
00500         }
00501         return id;
00502 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::SetColorEditContour ( double  r,
double  g,
double  b 
) [inherited]
void manualViewBaseContour::SetColorNormalContour ( double  r,
double  g,
double  b 
) [inherited]
void manualViewBaseContour::SetColorSelectContour ( double  r,
double  g,
double  b 
) [inherited]

Definition at line 668 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_coulorSelection_b, manualViewBaseContour::_coulorSelection_g, and manualViewBaseContour::_coulorSelection_r.

Referenced by manualViewBaseContour::CopyAttributesTo().

00669 {
00670         _coulorSelection_r = r;
00671         _coulorSelection_g = g;
00672         _coulorSelection_b = b;
00673 }

Here is the caller graph for this function:

void manualViewBaseContour::SetEditable ( bool *  condition  )  [inherited]

Definition at line 419 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_editable.

Referenced by manualContourBaseControler::SetModelView().

00420 {
00421         _editable = condition;
00422 }

Here is the caller graph for this function:

void manualViewBaseContour::SetIfViewControlPoints ( bool  ifShow  )  [inherited]

Definition at line 463 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_viewControlPoints.

Referenced by manualViewBaseContour::AddControlPoints(), manualViewBaseContour::CopyAttributesTo(), and manualViewBaseContour::RemoveControlPoints().

00464 {
00465         _viewControlPoints = ifShow;
00466 }

Here is the caller graph for this function:

void manualViewBaseContour::SetModel ( manualBaseModel manContModel  )  [inherited]
void manualViewBaseContour::SetPointPosibleSelected ( int  id,
bool  select 
) [inherited]
void manualViewBaseContour::SetPointSelected ( int  id,
bool  select 
) [inherited]

Definition at line 479 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints.

00480 {
00481         _lstViewPoints[id]->SetSelected(select);
00482 }

void manualViewBaseContour::SetPosibleSelected ( bool  posibleSelected  )  [inherited]

Definition at line 409 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_posibleSelected.

Referenced by manualViewBaseContour::CopyAttributesTo(), manualContour3VControler::MouseMove_Others(), and manualViewBaseContour::SelectPosibleContour().

00410 {
00411         _posibleSelected=posibleSelected;
00412 }

Here is the caller graph for this function:

void manualViewBaseContour::SetRange ( double  range  )  [inherited]
void manualViewBaseContour::SetSelected ( bool  selected  )  [inherited]

Definition at line 404 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_selected.

Referenced by manualViewBaseContour::CopyAttributesTo(), manualContourControler::MouseClickLeft(), and manualContourBaseControler::SetEditable().

00405 {
00406         _selected=selected;
00407 }

Here is the caller graph for this function:

void manualViewBaseContour::SetShowText ( bool  ok  )  [inherited]

Definition at line 893 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_show_text, and manualViewBaseContour::_textActor.

Referenced by wxWidgetMesure2D::OnVisibleInformation().

00894 {
00895         _show_text = ok;
00896         if (_show_text==false)
00897         {
00898                 _textActor->SetInput("00");
00899         }
00900 }

Here is the caller graph for this function:

void manualViewBaseContour::SetSpacing ( double  spc[3]  )  [inherited]
void manualViewBaseContour::SetVisible ( bool  ok  )  [inherited]

Definition at line 872 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_contourVtkActor, manualViewBaseContour::_lstViewPoints, and manualViewBaseContour::_textActor.

Referenced by wxWidgetMesure2D::OnActiveMessureTool(), wxWidgetMesure2D::OnVisibleMessureTool(), manualContourContainer::setLumenVisibility(), and manualContourContainer::setWallVisibility().

00873 {
00874         double opacity;
00875         if (ok==true)
00876         {
00877                 opacity=1;
00878         } else {
00879                 opacity=0.5;
00880         }
00881         vtkActor *actor;
00882         int i,size=_lstViewPoints.size();
00883         for (i=0;i<size;i++){
00884                 actor = _lstViewPoints[i]->GetVtkActor();
00885                 actor->GetProperty()->SetOpacity( opacity );
00886         }
00887         _contourVtkActor->GetProperty()->SetOpacity( opacity );
00888         _textActor->GetProperty()->SetOpacity( opacity );
00889         _textActor->SetInput("00");
00890 
00891 }

Here is the caller graph for this function:

void manualViewBaseContour::SetWidthLine ( double  width  )  [inherited]

Definition at line 211 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::_widthline, and manualViewBaseContour::UpdateColorActor().

Referenced by manualViewBullEye::ConstructVTKObjects().

00212 {
00213         _widthline = width;
00214         this->UpdateColorActor();
00215 
00216         // for the control points
00217         int id, size = _lstViewPoints.size();
00218         for( id=0; id<size; id++)
00219         {
00220                 this->_lstViewPoints[id]->SetWidthLine(_widthline);
00221         }
00222 
00223 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::SetWxVtkBaseView ( wxVtkBaseView wxvtkbaseview  )  [inherited]
void manualViewBaseContour::SetZ ( int  z  )  [inherited]
void manualViewBaseContour::TransfromCoordViewWorld ( double &  X,
double &  Y,
double &  Z,
int  type = 2 
) [virtual, inherited]

Reimplemented in manualView3DContour, and manualViewPerpPlaneContour.

Definition at line 736 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_wxvtkbaseview, and wxVtkBaseView::TransFromCoordScreenToWorld().

Referenced by manualContourBaseControler::AddPoint(), manualContour3VControler::AddPoint(), manualViewBaseContour::GetIdPoint(), manualView3VContour::GetIdPoint(), manualViewRoi::ifTouchContour(), ifTouchContour(), manualViewContour::ifTouchContour(), manualView3VContour::ifTouchContour(), manualViewRotationTool::InitMove(), manualViewRoi::InitMove(), manualViewLine::InitMove(), manualViewContour::InitMove(), manualViewCircle::InitMove(), manualContourBaseControler::InsertPoint(), manualContour3VControler::InsertPoint(), manualContourBaseControler::Magnet(), manualViewRotationTool::MoveContour(), manualViewRoi::MoveContour(), manualViewLine::MoveContour(), manualViewContour::MoveContour(), manualViewCircle::MoveContour(), manualContourBaseControler::SetPoint(), manualContour3VControler::SetPoint(), manualContourBaseControler::SetPointX(), manualContourBaseControler::SetPointY(), and manualContourBaseControler::SetPointZ().

00737 {
00738         _wxvtkbaseview->TransFromCoordScreenToWorld(X, Y, Z,false, type);
00739 
00740 
00741 //EED 27 sep 2007
00742 //   //EEDx6
00743 //      wxVtk2DBaseView *wxvtk2Dbaseview = (wxVtk2DBaseView*)_wxvtkbaseview;
00744 //      wxvtk2Dbaseview->TransformCoordinate_spacing_ModelToView(X,Y,Z);
00745 
00746 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::UnSelectAllPoints (  )  [inherited]

Definition at line 553 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, manualViewBaseContour::Refresh(), and manualViewBaseContour::UnSelectPoint().

00553                                              {
00554         int i,size=_lstViewPoints.size();
00555         for (i=0;i<size;i++){
00556                 UnSelectPoint(i);
00557         }
00558         Refresh();
00559 }

Here is the call graph for this function:

void manualViewBaseContour::UnSelectLstPoints (  )  [inherited]

Definition at line 549 of file manualViewBaseContour.cpp.

00549                                              {
00550         // ToDo
00551 }

void manualViewBaseContour::UnSelectPoint ( int  i  )  [inherited]

Definition at line 544 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, and manualViewBaseContour::Refresh().

Referenced by manualViewBaseContour::UnSelectAllPoints().

00544                                               {
00545         _lstViewPoints[i]->SetSelected(false);
00546         Refresh();
00547 }

Here is the call graph for this function:

Here is the caller graph for this function:

void manualViewBaseContour::UpdateColorActor (  )  [inherited]
void manualViewBaseContour::UpdateViewPoint ( int  id  )  [virtual, inherited]
void manualViewBaseContour::UpdateViewPoints (  )  [virtual, inherited]

Definition at line 327 of file manualViewBaseContour.cpp.

References manualViewBaseContour::_lstViewPoints, and manualViewBaseContour::UpdateViewPoint().

Referenced by manualViewContour::MoveContour().

00328 {
00329         int id, size = _lstViewPoints.size();
00330         for( id=0; id<size; id++)
00331         {
00332                 UpdateViewPoint( id );
00333         }
00334 }

Here is the call graph for this function:

Here is the caller graph for this function:


Member Data Documentation

double manualViewBaseContour::_coulorEdit_b [protected, inherited]
double manualViewBaseContour::_coulorEdit_g [protected, inherited]
double manualViewBaseContour::_coulorEdit_r [protected, inherited]
double manualViewBaseContour::_coulorNormal_b [protected, inherited]
double manualViewBaseContour::_coulorNormal_g [protected, inherited]
double manualViewBaseContour::_coulorNormal_r [protected, inherited]
double manualViewBaseContour::_coulorSelection_b [protected, inherited]
double manualViewBaseContour::_coulorSelection_g [protected, inherited]
double manualViewBaseContour::_coulorSelection_r [protected, inherited]
bool* manualViewBaseContour::_editable [protected, inherited]
std::vector<manualViewPoint*> manualViewBaseContour::_lstViewPoints [protected, inherited]
bool manualViewBaseContour::_posibleSelected [protected, inherited]
vtkPoints* manualViewBaseContour::_pts [protected, inherited]
double manualViewBaseContour::_range [protected, inherited]
bool manualViewBaseContour::_selected [protected, inherited]
bool manualViewBaseContour::_show_text [protected, inherited]
int manualViewBaseContour::_sizePointsContour [protected, inherited]
double manualViewBaseContour::_spc[3] [protected, inherited]
vtkTextActor* manualViewBaseContour::_textActor [protected, inherited]
bool manualViewBaseContour::_viewControlPoints [protected, inherited]
double manualViewBaseContour::_widthline [protected, inherited]

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

Generated on 18 Mar 2010 for creaMaracasVisu_lib by  doxygen 1.6.1