3 #include <vtkProperty.h>
5 #include <vtkCellArray.h>
6 #include <vtkRenderer.h>
7 #include <vtkCoordinate.h>
8 #include <vtkTextProperty.h>
9 #include <vtkTextActor.h>
10 #include <vtkProperty2D.h>
11 #include <vtkPointPicker.h>
12 #include "widgets/UtilVtk3DGeometriSelection.h"
15 #include "manualContour.h"
18 // ----------------------------------------------------------------------------
19 // ----------------------------------------------------------------------------
20 // ----------------------------------------------------------------------------
22 manualPoint::manualPoint(){
24 // ----------------------------------------------------------------------------
25 manualPoint::~manualPoint(){
27 // ----------------------------------------------------------------------------
28 void manualPoint::SetPoint(double x,double y,double z){
33 // ----------------------------------------------------------------------------
34 void manualPoint::SetPointX(double x){
37 // ----------------------------------------------------------------------------
38 void manualPoint::SetPointY(double y){
41 // ----------------------------------------------------------------------------
42 void manualPoint::SetPointZ(double z){
45 // ----------------------------------------------------------------------------
46 double manualPoint::GetX(){
49 // ----------------------------------------------------------------------------
50 double manualPoint::GetY(){
53 // ----------------------------------------------------------------------------
54 double manualPoint::GetZ(){
57 // ----------------------------------------------------------------------------
58 manualPoint * manualPoint :: Clone()
60 manualPoint * clone = new manualPoint();
61 clone->SetPoint( GetX(), GetY(), GetZ());
66 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
68 // ----------------------------------------------------------------------------
70 manualContourModelCircle::manualContourModelCircle()
71 : manualContourModel()
75 manualContourModelCircle::~manualContourModelCircle()
80 // ----------------------------------------------------------------------------
81 manualContourModelCircle * manualContourModelCircle :: Clone() // virtual
83 manualContourModelCircle * clone = new manualContourModelCircle();
84 CopyAttributesTo(clone);
88 // ---------------------------------------------------------------------------
90 void manualContourModelCircle::CopyAttributesTo( manualContourModelCircle * cloneObject)
93 manualContourModel::CopyAttributesTo(cloneObject);
96 //----------------------------------------------------------------
97 int manualContourModelCircle::GetTypeModel() //virtual
102 //----------------------------------------------------------------
103 void manualContourModelCircle::GetSpline_i_Point(int i, double *x, double *y, double *z) // virtal
105 double angle = _deltaAngle*i;
106 *x = _radio*cos(angle) + _centerX;
107 *y = _radio*sin(angle) + _centerY;
112 // ---------------------------------------------------------------------------
113 void manualContourModelCircle::UpdateSpline() // virtal
115 manualPoint *mpA,*mpB;
117 int np = GetSizeLstPoints( );
118 int nps = GetNumberOfPointsSpline();
119 _deltaAngle=(3.14159265*2)/(nps-1);
122 mpA = GetManualPoint(0);
123 mpB = GetManualPoint(1);
124 difX = mpA->GetX() - mpB->GetX();
125 difY = mpA->GetY() - mpB->GetY();
126 _radio = sqrt( difX*difX + difY*difY );
127 _centerX = mpA->GetX();
128 _centerY = mpA->GetY();
129 _centerZ = mpA->GetZ();
138 // ----------------------------------------------------------------------------
139 // ----------------------------------------------------------------------------
140 // ----------------------------------------------------------------------------
144 manualContourModelLine::manualContourModelLine()
145 : manualContourModel()
147 SetNumberOfPointsSpline(2);
150 manualContourModelLine::~manualContourModelLine()
155 // ----------------------------------------------------------------------------
156 manualContourModelLine * manualContourModelLine :: Clone() // virtual
158 manualContourModelLine * clone = new manualContourModelLine();
159 CopyAttributesTo(clone);
163 // ---------------------------------------------------------------------------
165 void manualContourModelLine::CopyAttributesTo( manualContourModelLine * cloneObject)
167 manualContourModel::CopyAttributesTo(cloneObject);
170 //----------------------------------------------------------------
171 int manualContourModelLine::GetTypeModel() //virtual
176 //----------------------------------------------------------------
177 void manualContourModelLine::GetSpline_i_Point(int i, double *x, double *y, double *z) // virtal
179 int np = GetSizeLstPoints();
189 mp = GetManualPoint(0);
200 mp = GetManualPoint(0);
204 mp = GetManualPoint(1);
215 int np = GetSizeLstPoints( );
216 int nps = GetNumberOfPointsSpline();
217 // _deltaAngle=(3.14159265*2)/(nps-1);
218 _deltaAngle = 100/nps;
223 mp = GetManualPoint(0);
225 mp = GetManualPoint(1);
242 // ----------------------------------------------------------------------------
243 // ----------------------------------------------------------------------------
244 // ----------------------------------------------------------------------------
245 manualContourModelBullEye::manualContourModelBullEye()
246 : manualContourModel()
248 _numberPointsSlineBySector=101; // impaire
251 manualContourModelBullEye::~manualContourModelBullEye()
256 // ----------------------------------------------------------------------------
257 manualContourModelBullEye * manualContourModelBullEye :: Clone() // virtual
259 manualContourModelBullEye * clone = new manualContourModelBullEye();
260 CopyAttributesTo(clone);
264 // ---------------------------------------------------------------------------
266 void manualContourModelBullEye::CopyAttributesTo( manualContourModelBullEye * cloneObject)
269 manualContourModel::CopyAttributesTo(cloneObject);
272 //----------------------------------------------------------------
273 int manualContourModelBullEye::GetTypeModel() //virtual
278 //----------------------------------------------------------------
279 int manualContourModelBullEye::GetNumberOfPointsSplineSectorBulleEje()
281 return _numberPointsSlineBySector;
284 //----------------------------------------------------------------
285 void manualContourModelBullEye::SetNumberOfPointsSplineSectorBulleEje(int numpoints)
287 this->_numberPointsSlineBySector = numpoints;
290 //----------------------------------------------------------------
291 void manualContourModelBullEye::AddSector( double radioA,
296 manualContourModelBullEyeSector *modelSector = new manualContourModelBullEyeSector();
297 modelSector->SetSector(radioA,radioB,ang,angDelta);
298 modelSector->SetNumberOfPointsSpline( this->GetNumberOfPointsSplineSectorBulleEje() );
299 _lstModelBullEyeSector.push_back(modelSector);
302 //----------------------------------------------------------------
303 manualContourModelBullEyeSector * manualContourModelBullEye::GetModelSector(int id)
305 return _lstModelBullEyeSector[id];
308 //----------------------------------------------------------------
309 void manualContourModelBullEye::GetSector(int id,
315 _lstModelBullEyeSector[id]->GetSector(radioA,radioB,ang,angDelta);
318 void manualContourModelBullEye::UpdateSpline() // virtual
320 manualContourModel::UpdateSpline();
322 if (this->GetSizeLstPoints()>2){
325 manualPoint *mpA = GetManualPoint(0);
326 manualPoint *mpB = GetManualPoint(2);
327 cx = (mpA->GetX() + mpB->GetX()) / 2.0;
328 cy = (mpA->GetY() + mpB->GetY()) / 2.0;
329 ww = fabs( mpA->GetX() - mpB->GetX() )/2.0;
330 hh = fabs( mpA->GetY() - mpB->GetY() )/2.0;
331 int i,size = _lstModelBullEyeSector.size();
334 _lstModelBullEyeSector[i]->SetCenter(cx,cy);
335 _lstModelBullEyeSector[i]->SetSize(ww,hh);
341 //----------------------------------------------------------------
342 void manualContourModelBullEye::ResetSectors()
344 int i,size=_lstModelBullEyeSector.size();
347 delete _lstModelBullEyeSector[i];
349 _lstModelBullEyeSector.clear();
352 //----------------------------------------------------------------
353 int manualContourModelBullEye::GetSizeOfSectorLst()
355 return _lstModelBullEyeSector.size();
358 //----------------------------------------------------------------
359 void manualContourModelBullEye::Save(FILE *ff) // virtual
361 manualContourModel::Save(ff);
362 int i,size = GetSizeOfSectorLst();
363 fprintf(ff,"numberOfSections %d \n",size);
364 for ( i=0 ; i<size ; i++ )
366 _lstModelBullEyeSector[i]->Save(ff);
370 //----------------------------------------------------------------
371 void manualContourModelBullEye::Open(FILE *ff) // virtual
373 manualContourModel::Open(ff);
379 int numberOfSections;
380 // double radioA,radioB,ang,deltaAng;
382 fscanf(ff,"%s",tmp); // NumberOfSections
383 fscanf(ff,"%s",tmp); // ##
384 numberOfSections = atoi(tmp);
385 for (i=0;i<numberOfSections;i++)
388 _lstModelBullEyeSector[i]->Open(ff);
393 // ----------------------------------------------------------------------------
394 std::vector<manualContourModel*> manualContourModelBullEye::ExploseModel( )
397 std::vector<manualContourModel*> lstTmp;
398 int i,iSize=_lstModelBullEyeSector.size();
399 for (i=0;i<iSize;i++)
401 lstTmp.push_back( _lstModelBullEyeSector[i] );
407 // ----------------------------------------------------------------------------
408 // ----------------------------------------------------------------------------
409 // ----------------------------------------------------------------------------
410 manualContourModelBullEyeSector::manualContourModelBullEyeSector()
411 : manualContourModel()
415 manualContourModelBullEyeSector::~manualContourModelBullEyeSector()
420 // ----------------------------------------------------------------------------
421 manualContourModelBullEyeSector * manualContourModelBullEyeSector :: Clone() // virtual
423 manualContourModelBullEyeSector * clone = new manualContourModelBullEyeSector();
424 CopyAttributesTo(clone);
428 // ---------------------------------------------------------------------------
430 void manualContourModelBullEyeSector::CopyAttributesTo( manualContourModelBullEyeSector * cloneObject)
433 manualContourModel::CopyAttributesTo(cloneObject);
436 //----------------------------------------------------------------
437 int manualContourModelBullEyeSector::GetTypeModel() //virtual
443 //----------------------------------------------------------------
444 void manualContourModelBullEyeSector::SetSector( double radioA,
451 _ang = ang*3.14159265/180.0;
452 _angDelta = angDelta*3.14159265/180.0;
455 //----------------------------------------------------------------
456 void manualContourModelBullEyeSector::GetSector(
465 *angDelta = _angDelta;
468 // ----------------------------------------------------------------------------
469 void manualContourModelBullEyeSector::SetCenter(double cx,double cy)
475 //----------------------------------------------------------------
476 void manualContourModelBullEyeSector::SetSize(double ww,double hh)
482 //----------------------------------------------------------------
483 void manualContourModelBullEyeSector::GetSpline_i_Point(int i, double *x, double *y, double *z)
489 double ang,angcos, angsin;
492 nps = GetNumberOfPointsSpline() - 3;
494 if (i==GetNumberOfPointsSpline()-1)
507 ang = ((double)ii/(nps/2))*_angDelta + _ang;
511 *x = _ww*radio*angcos + _cx;
512 *y = _hh*radio*angsin + _cy;
516 //----------------------------------------------------------------
517 void manualContourModelBullEyeSector::Save(FILE *ff) // virtual
519 manualContourModel::Save(ff);
520 fprintf(ff,"rA= %f rB= %f ang= %f deltaAng= %f\n", _radioA,_radioB, _ang , _angDelta);
523 //----------------------------------------------------------------
524 void manualContourModelBullEyeSector::Open(FILE *ff) // virtual
527 fscanf(ff,"%s",tmp); // TypeModel
528 fscanf(ff,"%s",tmp); // ##
530 manualContourModel::Open(ff);
533 fscanf(ff,"%s",tmp); // radioA=
534 fscanf(ff,"%s",tmp); // radioA
537 fscanf(ff,"%s",tmp); // radioB=
538 fscanf(ff,"%s",tmp); // radioB
541 fscanf(ff,"%s",tmp); // ang=
542 fscanf(ff,"%s",tmp); // ang
545 fscanf(ff,"%s",tmp); // deltaAng=
546 fscanf(ff,"%s",tmp); // deltaAng
547 _angDelta = atof(tmp);
552 // ---------------------------------------------------------------------------
553 // ---------------------------------------------------------------------------
554 // ---------------------------------------------------------------------------
555 // ---------------------------------------------------------------------------
557 //JSTG 25-02-08 --------------------------------------------------
558 manualContourModelRoi::manualContourModelRoi()
559 : manualContourModel()
561 SetNumberOfPointsSpline(5);
564 manualContourModelRoi::~manualContourModelRoi()
569 // ----------------------------------------------------------------------------
570 manualContourModelRoi * manualContourModelRoi :: Clone() // virtual
572 manualContourModelRoi * clone = new manualContourModelRoi();
573 CopyAttributesTo(clone);
577 // ---------------------------------------------------------------------------
579 void manualContourModelRoi::CopyAttributesTo( manualContourModelRoi * cloneObject)
582 manualContourModel::CopyAttributesTo(cloneObject);
585 //----------------------------------------------------------------
586 int manualContourModelRoi::GetTypeModel() //virtual
591 //----------------------------------------------------------------
594 // ----------------------------------------------------------------------------
595 // ----------------------------------------------------------------------------
596 // ----------------------------------------------------------------------------
598 manualContourModel::manualContourModel()
600 _cntSplineX = vtkKochanekSpline::New( );
601 _cntSplineY = vtkKochanekSpline::New( );
602 _cntSplineZ = vtkKochanekSpline::New( );
604 this->SetCloseContour(true);
606 _cntSplineX->SetDefaultTension( 0 );
607 _cntSplineX->SetDefaultBias( 0 );
608 _cntSplineX->SetDefaultContinuity( 0 );
610 _cntSplineY->SetDefaultTension( 0 );
611 _cntSplineY->SetDefaultBias( 0 );
612 _cntSplineY->SetDefaultContinuity( 0 );
614 _cntSplineZ->SetDefaultTension( 0 );
615 _cntSplineZ->SetDefaultBias( 0 );
616 _cntSplineZ->SetDefaultContinuity( 0 );
618 //JSTG 25-02-08 -------------------------------------------------------------------------------------------------
620 // this parameter is reset in the VIRTUAL manualContourBaseControler::Configure
621 _sizePointsContour = 100; //JSTG 25-02-08 The change in the inisialization of these variable is critical.
624 //---------------------------------------------------------------------------------------------------------------
627 // ----------------------------------------------------------------------------
628 manualContourModel::~manualContourModel()
630 int i,size=_lstPoints.size();
631 for (i=0;i<size; i++){
632 delete _lstPoints[i];
636 _cntSplineX->Delete();
637 _cntSplineY->Delete();
638 _cntSplineZ->Delete();
640 // ----------------------------------------------------------------------------
641 int manualContourModel::AddPoint(double x,double y,double z)
643 manualPoint *mp = new manualPoint();
648 return _lstPoints.size()-1;
650 // ----------------------------------------------------------------------------
651 int manualContourModel::InsertPoint(double x,double y,double z)
653 double dd,ddmin=9999999;
658 int i,ii,iii,size=_lstPoints.size();
659 double j,MaxDivisions=20,porcentage;
662 if (_closeContour==false)
669 for ( i=0 ; i<size ; i++ )
673 x1=_lstPoints[ii]->GetX();
674 y1=_lstPoints[ii]->GetY();
675 z1=_lstPoints[ii]->GetZ();
676 x2=_lstPoints[iii]->GetX();
677 y2=_lstPoints[iii]->GetY();
678 z2=_lstPoints[iii]->GetZ();
679 for (j=0; j<=MaxDivisions; j++)
681 porcentage=(j/MaxDivisions);
682 xx=(x2-x1)*porcentage+x1;
683 yy=(y2-y1)*porcentage+y1;
684 zz=(z2-z1)*porcentage+z1;
685 dd=sqrt( (xx-x)*(xx-x) + (yy-y)*(yy-y) + (zz-z)*(zz-z) );
695 if (_closeContour==false)
697 if ( (ibak==1) && (jbak==0) )
701 if ( ( ibak==size ) && ( jbak==MaxDivisions ) )
708 //JSTG - 25-04-08 ----------------------------------------------------------
709 //manualPoint *mp = new manualPoint();
710 //mp->SetPoint(x,y,z);
711 //std::vector<manualPoint*>::iterator itNum = _lstPoints.begin() + ibak;
712 //_lstPoints.insert(itNum,mp);
713 InsertPoint_id(ibak,x,y,z);
714 //----------------------------------------------------------------------------
718 // ----------------------------------------------------------------------------
719 void manualContourModel::InsertPoint_id(int id, double x, double y, double z)
721 manualPoint *mp = new manualPoint();
723 std::vector<manualPoint*>::iterator itNum = _lstPoints.begin() + id;
724 _lstPoints.insert(itNum,mp);
726 // ----------------------------------------------------------------------------
728 void manualContourModel::DeletePoint(int i)
730 std::vector<manualPoint*>::iterator itNum = _lstPoints.begin() + i;
731 _lstPoints.erase(itNum);
733 // ----------------------------------------------------------------------------
734 void manualContourModel::DeleteAllPoints()
736 int i,size=_lstPoints.size();
737 for (i=0;i<size;i++){
738 _lstPoints.erase( _lstPoints.begin() );
740 this->UpdateSpline();
742 // ----------------------------------------------------------------------------
744 void manualContourModel::MovePoint(int i,double dx,double dy,double dz)
746 manualPoint *mp=_lstPoints[i];
747 double x=mp->GetX()+dx;
748 double y=mp->GetY()+dy;
749 double z=mp->GetZ()+dz;
752 // ----------------------------------------------------------------------------
753 void manualContourModel::MoveLstPoints(double dx,double dy,double dz)
757 // ----------------------------------------------------------------------------
758 void manualContourModel::MoveAllPoints(double dx,double dy,double dz)
760 int i,size=_lstPoints.size();
761 for (i=0;i<size;i++){
762 MovePoint(i,dx,dy,dz);
767 // ----------------------------------------------------------------------------
773 int manualContourModel::GetIdPoint(double x, double y, double z, int i_range,int type)
775 double range = i_range+1;
777 double xx,yy,zz,dd,ddmin=9999999;
779 int i,size=_lstPoints.size();
780 for (i=0;i<size;i++){
781 manualPoint *mp=_lstPoints[i];
788 if ((fabs(xx-x)<range) && (fabs(yy-y)<range) && (fabs(zz-z)<range)) {
789 dd=sqrt( (xx-x)*(xx-x) + (yy-y)*(yy-y) + (zz-z)*(zz-z) );
798 if ((fabs(yy-y)<range) && (fabs(zz-z)<range)) {
799 dd=sqrt( (yy-y)*(yy-y) + (zz-z)*(zz-z) );
808 if ((fabs(xx-x)<range) && (fabs(zz-z)<range)) {
809 dd=sqrt( (xx-x)*(xx-x) + (zz-z)*(zz-z) );
818 if ((fabs(xx-x)<range) && (fabs(yy-y)<range) ) {
819 dd=sqrt( (xx-x)*(xx-x) + (yy-y)*(yy-y) );
829 // ----------------------------------------------------------------------------
830 manualPoint* manualContourModel::GetManualPoint(int id)
832 return _lstPoints[id];
834 // ----------------------------------------------------------------------------
835 int manualContourModel::GetSizeLstPoints()
837 return _lstPoints.size();
839 //----------------------------------------------------------------------------
840 int manualContourModel::GetNumberOfPointsSpline()
842 return _sizePointsContour;
844 //----------------------------------------------------------------------------
845 void manualContourModel::SetNumberOfPointsSpline(int size)
847 _sizePointsContour = size;
851 // ----------------------------------------------------------------------------
853 void manualContourModel::SetCloseContour(bool closeContour)
855 _closeContour = closeContour;
856 if (_closeContour==true)
858 _cntSplineX->ClosedOn();
859 _cntSplineY->ClosedOn();
860 _cntSplineZ->ClosedOn();
862 _cntSplineX->ClosedOff();
863 _cntSplineY->ClosedOff();
864 _cntSplineZ->ClosedOff();
868 // ----------------------------------------------------------------------------
869 bool manualContourModel::IfCloseContour()
871 return _closeContour;
874 // ----------------------------------------------------------------------------
876 void manualContourModel::UpdateSpline() // virtual
879 np = _lstPoints.size();
881 _cntSplineX->RemoveAllPoints();
882 _cntSplineY->RemoveAllPoints();
883 _cntSplineZ->RemoveAllPoints();
884 for( i = 0; i < np; i++ ) {
885 mp = GetManualPoint(i);
886 _cntSplineX->AddPoint( i, mp->GetX() );
887 _cntSplineY->AddPoint( i, mp->GetY() );
888 _cntSplineZ->AddPoint( i, mp->GetZ() );
891 //JSTG 25-02-08 ---------------------------------------------------------------------------------------------
892 if (this->_closeContour==true)
894 _delta_JSTG = (double) (np) / double (_sizePointsContour - 1); //Without the -1 the curve is not close
896 _delta_JSTG = (double) (np-1) / double (_sizePointsContour ); //Without the -1 the curve is not close
898 //-----------------------------------------------------------------------------------------------------------
901 //---------------------------------------------------------------------------------
903 /*void manualContourModel::GetSplineiPoint(int i, double &x, double &y, double &z)
905 double delta=(double)(_lstPoints.size()) / (double)(_sizePointsContour);
906 double t = delta*(double)i;
907 GetSplinePoint(t, x, y, z);
910 //-----------------------------------------------------------------------------
912 //JSTG 25-02-08 ---------------------------------------------------------------
913 void manualContourModel::GetSpline_i_Point(int i, double *x, double *y, double *z) // virtal
915 GetSpline_t_Point(i*_delta_JSTG,x,y,z);
918 // ----------------------------------------------------------------------------
920 //JSTG 25-02-08 ---------------------------------------------------------------
921 void manualContourModel::GetSpline_t_Point(double t, double *x, double *y, double *z)
923 if (_lstPoints.size()==0)
929 if (_lstPoints.size()==1)
932 mp = GetManualPoint(0);
937 if (_lstPoints.size()>=2)
939 *x = _cntSplineX->Evaluate(t);
940 *y = _cntSplineY->Evaluate(t);
941 *z = _cntSplineZ->Evaluate(t);
945 // ----------------------------------------------------------------------------
948 /*void manualContourModel::GetSplinePoint(double t, double &x, double &y, double &z)
950 if (_lstPoints.size()==0)
956 if (_lstPoints.size()==1)
959 mp = GetManualPoint(0);
964 if (_lstPoints.size()>=2)
966 x = _cntSplineX->Evaluate(t);
967 y = _cntSplineY->Evaluate(t);
968 z = _cntSplineZ->Evaluate(t);
971 // ----------------------------------------------------------------------------
972 double manualContourModel::GetPathSize()
978 // JSTG 25-02-08 -----------------------------
982 //--------------------------------------------
984 if (_lstPoints.size()==2)
986 x1=_lstPoints[0]->GetX();
987 y1=_lstPoints[0]->GetY();
988 z1=_lstPoints[0]->GetZ();
989 x2=_lstPoints[1]->GetX();
990 y2=_lstPoints[1]->GetY();
991 z2=_lstPoints[1]->GetZ();
992 result = sqrt( (x2-x1)*(x2-x1) + (y2-y1)*(y2-y1) + (z2-z1)*(z2-z1) );
994 if (_lstPoints.size()>2)
997 // JSTG 25-02-08 ------------------------------------------
998 //np = _lstPoints.size( );
1000 //delta=( double ) ( np ) / ( double ) ( nps );
1002 //GetSplinePoint(0,x1,y1,z1);
1003 GetSpline_i_Point(0,&x1,&y1,&z1);
1005 //for( i = 1; i < nps; i++ )
1006 for( i = 1; i < GetNumberOfPointsSpline(); i++ )
1008 //t = delta * (double)i;
1009 //GetSplinePoint(t,x2,y2,z2);
1010 GetSpline_i_Point(i,&x2,&y2,&z2);
1011 //---------------------------------------------------------
1012 result=result + sqrt( (x2-x1)*(x2-x1) + (y2-y1)*(y2-y1) + (z2-z1)*(z2-z1) );
1021 // ----------------------------------------------------------------------------
1022 double manualContourModel::GetPathArea()
1024 double result = 555;
1025 if ((_lstPoints.size()>=3) && IfCloseContour()==true )
1028 //JSTG 25-02-08 ---------------------------------------------
1030 //-----------------------------------------------------------
1036 // This uses Green's theorem:
1037 // A = 1/2 * sum( xiyi+1 - xi+1yi); pO == pN
1038 // A < 0 -> A = |A| (a negative value could raise because points are
1039 // given in clockwise order).
1041 //JSTG 25-02-08 -------------------------------------------------
1042 //int np = _lstPoints.size( );
1044 int nps = GetNumberOfPointsSpline();
1045 //double delta=( double ) ( np ) / ( double ) ( nps );
1047 for( i = 0, area = 0.0; i < nps; i++ )
1049 j = ( i + 1 ) % nps;
1050 //ti = delta * (double)i;
1051 //tj = delta * (double)j;
1052 //GetSplinePoint(ti,x1,y1,z1);
1053 //GetSplinePoint(tj,x2,y2,z2);
1054 GetSpline_i_Point(i,&x1,&y1,&z1);
1055 GetSpline_i_Point(j,&x2,&y2,&z2);
1056 //----------------------------------------------------------------
1066 area = fabs( area );
1069 for( i = 0, area = 0.0; i < _lstPoints.size(); i++ )
1071 j = ( i + 1 ) % _lstPoints.size();
1074 (_lstPoints[i]->GetX() * _lstPoints[j]->GetY() ) -
1075 ( _lstPoints[j]->GetX() * _lstPoints[i]->GetY() );
1076 if (_lstPoints[0]->GetZ()!=_lstPoints[i]->GetZ())
1082 area = fabs( area );
1098 // ----------------------------------------------------------------------------
1099 // p[x,y,z] : data in
1100 // rp[x,y,z] : data out result point
1101 // rn[x,y,z] : data out result normal
1103 void manualContourModel::GetNearestPointAndNormal(double *p, double *rp, double *rn)
1105 double distMin=999999999;
1106 double dist,dx,dy,dz;
1111 //JSTG 25-02-08 -------------------
1115 //---------------------------------
1117 np = _lstPoints.size( );
1120 // JSTG 25-02-08 ------------------------------------------
1122 nps = GetNumberOfPointsSpline();
1123 //delta = ( double ) ( np ) / ( double ) ( nps );
1125 //GetSplinePoint(0,x1,y1,z1);
1126 GetSpline_i_Point(0,&x1,&y1,&z1);
1127 for( i = 0; i < nps; i++ )
1129 //t = delta * (double)i;
1130 //GetSplinePoint(t,x1,y1,z1);
1131 GetSpline_i_Point(i,&x1,&y1,&z1);
1132 //----------------------------------------------------------
1136 dist = sqrt( dx*dx + dy*dy + dz*dz );
1154 // JSTG 25-02-08 ------------------------------------------
1158 //t = delta * (double)1.0;
1159 //GetSplinePoint(t,x1,y1,z1);
1160 GetSpline_i_Point(i,&x1,&y1,&z1);
1161 //----------------------------------------------------------
1178 // ----------------------------------------------------------------------------
1179 manualContourModel * manualContourModel :: Clone() // virtual
1181 manualContourModel * clone = new manualContourModel();
1182 CopyAttributesTo(clone);
1186 // ----------------------------------------------------------------------------
1187 void manualContourModel::Open(FILE *ff) // virtual
1191 int numberOfControlPoints;
1194 fscanf(ff,"%s",tmp); // NumberOfControlPoints
1195 fscanf(ff,"%s",tmp); // ##
1196 numberOfControlPoints = atoi(tmp);
1197 for (i=0;i<numberOfControlPoints;i++)
1199 fscanf(ff,"%s",tmp); // X
1201 fscanf(ff,"%s",tmp); // Y
1203 fscanf(ff,"%s",tmp); // Z
1210 // ----------------------------------------------------------------------------
1211 int manualContourModel::GetTypeModel() //virtual
1223 // ----------------------------------------------------------------------------
1224 void manualContourModel::Save(FILE *ff) // virtual
1226 int i,size=_lstPoints.size();
1227 fprintf(ff,"TypeModel %d\n", GetTypeModel() );
1228 fprintf(ff,"NumberOfControlPoints %d\n",size);
1229 for (i=0;i<size;i++)
1231 manualPoint *mp=_lstPoints[i];
1232 fprintf(ff,"%f %f %f\n", mp->GetX(), mp->GetY(), mp->GetZ() );
1237 // ---------------------------------------------------------------------------
1239 void manualContourModel::CopyAttributesTo( manualContourModel * cloneObject)
1242 //XXXX::CopyAttributesTo(cloneObject);
1244 cloneObject->SetCloseContour( this->IfCloseContour() );
1245 int i, size = GetSizeLstPoints();
1246 for( i=0; i<size; i++ )
1248 cloneObject->AddManualPoint( GetManualPoint( i )->Clone() );
1250 cloneObject->SetNumberOfPointsSpline( GetNumberOfPointsSpline () );
1251 cloneObject->SetCloseContour( _closeContour );
1252 cloneObject->UpdateSpline();
1256 // ---------------------------------------------------------------------------
1257 void manualContourModel::AddManualPoint( manualPoint* theManualPoint )//private
1259 _lstPoints.push_back( theManualPoint );
1262 std::vector<manualContourModel*> manualContourModel::ExploseModel( )
1264 std::vector<manualContourModel*> lstTmp;
1265 lstTmp.push_back(this);
1270 // ---------------------------------------------------------------------------
1271 // ----------------------------------------------------------------------------
1272 // ----------------------------------------------------------------------------
1274 //int manualViewPoint::range=1;
1277 manualViewPoint::manualViewPoint(wxVtkBaseView *wxvtkbaseview){
1279 _posibleSelected = false;
1282 _pointVtkActor = NULL;
1284 _wxvtkbaseview = wxvtkbaseview;
1292 // ----------------------------------------------------------------------------
1293 manualViewPoint::~manualViewPoint(){
1297 // ----------------------------------------------------------------------------
1298 void manualViewPoint::SetWidthLine( double width)
1303 // ----------------------------------------------------------------------------
1304 void manualViewPoint::SetSelected(bool selected){
1307 // ----------------------------------------------------------------------------
1308 void manualViewPoint::SetPosibleSelected(bool posibleSelected){
1309 _posibleSelected=posibleSelected;
1311 // ----------------------------------------------------------------------------
1312 bool manualViewPoint::GetSelected(){
1315 // ----------------------------------------------------------------------------
1316 bool manualViewPoint::GetPosibleSelected(){
1317 return _posibleSelected;
1319 // ----------------------------------------------------------------------------
1320 void manualViewPoint::DeleteVtkObjects(){
1321 if (_pointVtkActor !=NULL) { _pointVtkActor->Delete(); }
1322 if (_bboxMapper !=NULL) { _bboxMapper ->Delete(); }
1323 if (_pts !=NULL) { _pts ->Delete(); }
1324 if (_pd !=NULL) { _pd ->Delete(); }
1325 _pointVtkActor = NULL;
1333 // ----------------------------------------------------------------------------
1334 vtkActor* manualViewPoint::CreateVtkPointActor()
1338 _pts = vtkPoints::New();
1339 _pts->SetNumberOfPoints(8);
1340 _pts->SetPoint(0, -1000 , -1000 , 0 );
1341 _pts->SetPoint(1, 1000 , -1000 , 0 );
1342 _pts->SetPoint(2, 1000 , 1000 , 0 );
1343 _pts->SetPoint(3, -1000 , 1000 , 0 );
1344 _pts->SetPoint(4, -1000 , 1000 , 0 );
1345 _pts->SetPoint(5, -1000 , 1000 , 0 );
1346 _pts->SetPoint(6, -1000 , 1000 , 0 );
1347 _pts->SetPoint(7, -1000 , 1000 , 0 );
1349 vtkCellArray *lines = vtkCellArray::New();
1350 lines->InsertNextCell(17);
1351 lines->InsertCellPoint(0);
1352 lines->InsertCellPoint(1);
1353 lines->InsertCellPoint(2);
1354 lines->InsertCellPoint(3);
1355 lines->InsertCellPoint(0);
1356 lines->InsertCellPoint(4);
1357 lines->InsertCellPoint(5);
1358 lines->InsertCellPoint(6);
1359 lines->InsertCellPoint(7);
1360 lines->InsertCellPoint(4);
1361 lines->InsertCellPoint(0);
1362 lines->InsertCellPoint(3);
1363 lines->InsertCellPoint(7);
1364 lines->InsertCellPoint(6);
1365 lines->InsertCellPoint(2);
1366 lines->InsertCellPoint(1);
1367 lines->InsertCellPoint(5);
1369 _pd = vtkPolyData::New();
1370 _pd->SetPoints( _pts );
1371 _pd->SetLines( lines );
1372 lines->Delete(); //do not delete lines ??
1374 _pointVtkActor = vtkActor::New();
1375 _bboxMapper = vtkPolyDataMapper::New();
1377 _bboxMapper->SetInput(_pd);
1378 _bboxMapper->ImmediateModeRenderingOn();
1379 _pointVtkActor->SetMapper(_bboxMapper);
1380 _pointVtkActor->GetProperty()->BackfaceCullingOn();
1382 _pd->ComputeBounds();
1384 return _pointVtkActor;
1386 // ----------------------------------------------------------------------------
1387 vtkActor* manualViewPoint::GetVtkActor(){
1388 return _pointVtkActor;
1390 // ----------------------------------------------------------------------------
1391 void manualViewPoint::SetPositionXY(double x, double y,double i_range,double posZ)
1393 // double range=0.2; // i_range;
1394 // double range=(double)manualViewPoint::range;
1396 double range=i_range;
1401 posZ = posZ * _spc[2];
1404 _pts->SetPoint(0, x-range, y+range, posZ-range);
1405 _pts->SetPoint(1, x+range, y+range, posZ-range);
1406 _pts->SetPoint(2, x+range, y-range, posZ-range);
1407 _pts->SetPoint(3, x-range, y-range, posZ-range);
1408 _pts->SetPoint(4, x-range, y+range, posZ+range);
1409 _pts->SetPoint(5, x+range, y+range, posZ+range);
1410 _pts->SetPoint(6, x+range, y-range, posZ+range);
1411 _pts->SetPoint(7, x-range, y-range, posZ+range);
1416 // ----------------------------------------------------------------------------
1417 void manualViewPoint::UpdateColorActor()
1419 if (_pointVtkActor!=NULL){
1421 _pointVtkActor->GetProperty()->SetLineWidth( _widthline );
1422 _pointVtkActor->GetProperty()->SetDiffuseColor(1,0,0);
1423 if (_posibleSelected==true){
1424 _pointVtkActor->GetProperty()->SetDiffuseColor(1,1,0);
1428 // ----------------------------------------------------------------------------
1429 void manualViewPoint::GetSpacing(double spc[3])
1435 // ----------------------------------------------------------------------------
1436 void manualViewPoint::SetSpacing(double spc[3])
1445 // ----------------------------------------------------------------------------
1446 // ----------------------------------------------------------------------------
1447 // ----------------------------------------------------------------------------
1449 manualViewContour::manualViewContour()
1451 _id_viewPoint_for_text = 0;
1453 _initialConoturModel = new manualContourModel();
1455 // ----------------------------------------------------------------------------
1456 manualViewContour::~manualViewContour()
1458 delete _initialConoturModel;
1460 // ----------------------------------------------------------------------------
1462 // ----------------------------------------------------------------------------
1463 manualViewContour * manualViewContour :: Clone()
1465 manualViewContour * clone = new manualViewContour();
1466 CopyAttributesTo(clone);
1470 // ---------------------------------------------------------------------------
1472 void manualViewContour::CopyAttributesTo( manualViewContour * cloneObject)
1474 // Call to Fathers object
1475 manualViewBaseContour::CopyAttributesTo(cloneObject);
1477 cloneObject->SetMesureScale(_mesureScale);
1480 // ---------------------------------------------------------------------------
1482 int manualViewContour::GetType() // virtual
1487 // ----------------------------------------------------------------------------
1489 void manualViewContour::Save(FILE *pFile)
1491 manualViewBaseContour::Save(pFile);
1494 // ----------------------------------------------------------------------------
1496 void manualViewContour::Open(FILE *pFile)
1502 // ----------------------------------------------------------------------------
1503 void manualViewContour::RefreshContour() // virtual
1508 //JSTG 25-02-08 --------------------
1509 //double t,delta, x,y,z;
1511 //----------------------------------
1513 _manContModel->UpdateSpline();
1514 np = GetNumberOfPoints( );
1515 //nps = GetNumberOfPointsSpline();
1516 nps = _manContModel->GetNumberOfPointsSpline();
1517 //delta=( double ) ( np ) / ( double ) ( nps-1 ); //JSTG 25-02-08
1519 //printf ("EED manualViewContour::RefreshContour>> %d %d \n", np,nps);
1525 for( i = 0; i < nps; i++ )
1527 //JSTG 25-02-08 ------------------------------------------------
1528 //t = delta * (double)i;
1529 //_manContModel->GetSplinePoint(t,x,y,z);
1530 _manContModel->GetSpline_i_Point(i,&x,&y,&z);
1531 //--------------------------------------------------------------
1533 // _pts->SetPoint(i, x,y,z );
1534 _pts->SetPoint(i , x*_spc[0] , y*_spc[1] , z*_spc[2] );
1537 // printf ("EED manualViewContour::RefreshContour>> %d : %f %f %f \n", i,x,y,z);
1545 _pts->SetPoint(0, 0 , 0 , 0);
1546 _pts->SetPoint(1, 0 , 0 , 0);
1551 // ----------------------------------------------------------------------------
1552 void manualViewContour::RefreshText() // virtual
1555 if ((_textActor!=NULL) && ( _textActor->GetProperty()->GetOpacity()!=0 )){
1556 int size = GetNumberOfPoints();
1558 char resultText[50];
1559 strcpy(resultText," ");
1562 strcpy(resultText,"L= ");
1563 gcvt ( _mesureScale * this->_manContModel->GetPathSize() , 5, text );
1564 strcat(resultText,text);
1568 if (_manContModel->IfCloseContour()==true)
1570 strcpy(resultText,"P= ");
1571 gcvt ( _mesureScale * this->_manContModel->GetPathSize() , 5, text );
1572 strcat(resultText,text);
1573 gcvt ( _mesureScale * _mesureScale * this->_manContModel->GetPathArea() , 5, text );
1574 strcat(resultText," A= ");
1575 strcat(resultText,text);
1577 strcpy(resultText,"L= ");
1578 gcvt ( _mesureScale * this->_manContModel->GetPathSize() , 5, text );
1579 strcat(resultText,text);
1583 _textActor -> SetInput(resultText);
1588 for (i=0; i<size; i++)
1590 if (_lstViewPoints[i]->GetPosibleSelected()==true)
1592 _id_viewPoint_for_text = i;
1596 int id = _id_viewPoint_for_text;
1597 double px = _manContModel->GetManualPoint(id)->GetX();
1598 double py = _manContModel->GetManualPoint(id)->GetY();
1604 _textActor->SetPosition(px+GetRange()+1,py);
1610 // ----------------------------------------------------------------------------
1611 bool manualViewContour::ifTouchContour(int x,int y,int z){
1619 TransfromeCoordViewWorld(xx,yy,zz);
1626 unsigned int i, nps,nps_t;
1627 nps = _sizePointsContour;
1628 if (this->_manContModel->IfCloseContour()==true)
1636 printf("\n>%d ",nps_t);
1638 for( i = 0; i < nps_t; i++ )
1640 _pts->GetPoint(i%nps, ppA);
1641 _pts->GetPoint((i+1)%nps, ppB);
1642 d1= sqrt( (ppA[0]-xx)*(ppA[0]-xx) + (ppA[1]-yy)*(ppA[1]-yy) + (ppA[2]-zz)*(ppA[2]-zz));
1643 d2= sqrt( (ppB[0]-xx)*(ppB[0]-xx) + (ppB[1]-yy)*(ppB[1]-yy) + (ppB[2]-zz)*(ppB[2]-zz));
1644 d3= sqrt( (ppB[0]-ppA[0])*(ppB[0]-ppA[0]) + (ppB[1]-ppA[1])*(ppB[1]-ppA[1]) + (ppB[2]-ppA[2])*(ppB[2]-ppA[2]));
1647 printf("%d %f %f %f - ", i,d1,d2,d3);
1649 if ( ((d1+d2)>=d3) && ((d1+d2)<=d3*1.3) )
1658 // ----------------------------------------------------------------------------
1659 void manualViewContour::DeletePoint(int id) // virtual
1661 if (_lstViewPoints.size()>2)
1663 manualViewBaseContour::DeletePoint( id );
1666 // ----------------------------------------------------------------------------
1668 void manualViewContour::ClearPoint(int id)
1670 manualViewBaseContour::DeletePoint( id );
1673 //-------------------------------------------------------------------
1674 void manualViewContour::SetMesureScale(double mesureScale)
1676 _mesureScale = mesureScale;
1678 //-------------------------------------------------------------------
1679 void manualViewContour::InitMove(int x, int y, int z)
1681 _initialConoturModel->DeleteAllPoints();
1683 manualPoint *mp = NULL;
1687 TransfromeCoordViewWorld(XX,YY,ZZ);
1689 int i, manualPointsSZ = _manContModel->GetSizeLstPoints();
1690 for ( i=0; i<manualPointsSZ; i++ )
1692 mp = _manContModel->GetManualPoint( i );
1693 this->_initialConoturModel->AddPoint( mp->GetX() - XX, mp->GetY() - YY, mp->GetZ() );
1696 //-------------------------------------------------------------------
1697 void manualViewContour::MoveContour(int x, int y, int z)
1699 manualPoint *mpOrigin = NULL;
1700 manualPoint *mpMoving = NULL;
1705 TransfromeCoordViewWorld(XX,YY,ZZ);
1707 int i, manualPointsSZ = _manContModel->GetSizeLstPoints();
1708 for ( i=0; i<manualPointsSZ; i++ )
1710 mpOrigin = _manContModel->GetManualPoint( i );
1711 mpMoving = _initialConoturModel->GetManualPoint(i);
1712 mpOrigin->SetPoint( mpMoving->GetX()+XX, mpMoving->GetY() + YY, mpMoving->GetZ() );
1716 void manualViewContour::MoveContour(int horizontalUnits, int verticalUnits )
1718 manualPoint *mpOrigin = NULL;
1720 int i, manualPointsSZ = _manContModel->GetSizeLstPoints();
1721 for ( i=0; i<manualPointsSZ; i++ )
1723 mpOrigin = _manContModel->GetManualPoint( i );
1724 mpOrigin->SetPoint( mpOrigin->GetX()+horizontalUnits, mpOrigin->GetY()+verticalUnits, mpOrigin->GetZ() );
1728 // ----------------------------------------------------------------------------
1729 // ----------------------------------------------------------------------------
1730 // ----------------------------------------------------------------------------
1733 manualView3VContour::manualView3VContour(int type)
1736 // JSTG 25-02-08 ------------------------------
1737 //_manContModel= new manualContourModel();
1738 //---------------------------------------------
1740 // ----------------------------------------------------------------------------
1741 manualView3VContour::~manualView3VContour()
1747 // ----------------------------------------------------------------------------
1748 manualView3VContour * manualView3VContour :: Clone()
1750 manualView3VContour * clone = new manualView3VContour( GetType() );
1751 CopyAttributesTo(clone);
1755 // ---------------------------------------------------------------------------
1757 void manualView3VContour::CopyAttributesTo( manualView3VContour * cloneObject)
1760 manualViewContour::CopyAttributesTo(cloneObject);
1763 int manualView3VContour::GetType()
1768 // ----------------------------------------------------------------------------
1769 void manualView3VContour::FilterCordinateXYZ(double &x,double &y,double &z)
1784 // ----------------------------------------------------------------------------
1786 void manualView3VContour::RefreshContour() // virtula
1788 manualViewContour::RefreshContour();
1791 // JSTG 25-02-08 ----------------------------------------
1792 //int nps = GetNumberOfPointsSpline();
1793 int nps = _manContModel->GetNumberOfPointsSpline();
1794 //-------------------------------------------------------
1795 for( i = 0; i < nps; i++ )
1797 _pts->GetPoint( i, pp );
1798 FilterCordinateXYZ(pp[0],pp[1],pp[2]);
1801 _pts->SetPoint( i, pp[0] , pp[1] ,pp[2] );
1806 // ----------------------------------------------------------------------------
1808 void manualView3VContour::UpdateViewPoint(int id){ // virtual
1810 manualPoint *mp = _manContModel->GetManualPoint(id);
1815 FilterCordinateXYZ(x,y,z);
1816 _lstViewPoints[id]->SetPositionXY( x , y ,GetRange(), z );
1819 // ----------------------------------------------------------------------------
1821 int manualView3VContour::GetIdPoint(int x, int y, int z) // virtual
1824 if (_manContModel!=NULL){
1828 TransfromeCoordViewWorld(xx,yy,zz,-1);
1829 ii=_manContModel->GetIdPoint(xx,yy,zz,GetRange(),_type);
1834 // ----------------------------------------------------------------------------
1835 bool manualView3VContour::ifTouchContour(int x,int y,int z){ // virtual
1843 TransfromeCoordViewWorld(xx,yy,zz,-1);
1850 unsigned int i, nps,nps_t;
1851 nps = _sizePointsContour;
1852 if (this->_manContModel->IfCloseContour()==true)
1858 FilterCordinateXYZ(xx,yy,zz);
1860 for( i = 0; i < nps_t; i++ ) {
1861 _pts->GetPoint(i%nps, ppA);
1862 _pts->GetPoint((i+1)%nps, ppB);
1863 FilterCordinateXYZ(ppA[0],ppA[1],ppA[2]);
1864 FilterCordinateXYZ(ppB[0],ppB[1],ppB[2]);
1865 d1= sqrt( (ppA[0]-xx)*(ppA[0]-xx) + (ppA[1]-yy)*(ppA[1]-yy) + (ppA[2]-zz)*(ppA[2]-zz));
1866 d2= sqrt( (ppB[0]-xx)*(ppB[0]-xx) + (ppB[1]-yy)*(ppB[1]-yy) + (ppB[2]-zz)*(ppB[2]-zz));
1867 d3= sqrt( (ppB[0]-ppA[0])*(ppB[0]-ppA[0]) + (ppB[1]-ppA[1])*(ppB[1]-ppA[1]) + (ppB[2]-ppA[2])*(ppB[2]-ppA[2]));
1868 if ( ((d1+d2)>=d3) && ((d1+d2)<=d3*1.3) ) {
1875 // ----------------------------------------------------------------------------
1876 // ----------------------------------------------------------------------------
1877 // ----------------------------------------------------------------------------
1878 manualView3DContour::manualView3DContour()
1881 // ----------------------------------------------------------------------------
1882 manualView3DContour::~manualView3DContour()
1886 // ----------------------------------------------------------------------------
1887 manualView3DContour * manualView3DContour :: Clone()
1889 manualView3DContour * clone = new manualView3DContour();
1890 CopyAttributesTo(clone);
1894 // ---------------------------------------------------------------------------
1895 void manualView3DContour::CopyAttributesTo( manualView3DContour * cloneObject)
1898 manualViewContour::CopyAttributesTo(cloneObject);
1900 cloneObject->SetDimensions ( _w , _h , _d );
1902 // ----------------------------------------------------------------------------
1903 void manualView3DContour::SetDimensions(int w, int h, int d)
1909 // ----------------------------------------------------------------------------
1910 void manualView3DContour::TransfromeCoordViewWorld(double &X, double &Y, double &Z, int type)
1912 X = _vtkmprbasedata->GetX();
1913 Y = _vtkmprbasedata->GetY();
1914 Z = _vtkmprbasedata->GetZ();
1916 // ----------------------------------------------------------------------------
1917 void manualView3DContour::SetVtkMPRBaseData(vtkMPRBaseData *vtkmprbasedata)
1919 _vtkmprbasedata = vtkmprbasedata;
1921 // ----------------------------------------------------------------------------
1922 int manualView3DContour::GetIdPoint2(int x, int y)
1925 double p[3],pA[3],pB[3];
1927 double pickPoint[ 3 ], cameraPos[ 3 ];
1928 vtkPointPicker* picker = vtkPointPicker::New( );
1929 vtkRenderer *pRenderer = this->GetWxVtkBaseView()->GetRenderer();
1930 picker->Pick( x, y, 0.0, pRenderer );
1931 pRenderer->GetActiveCamera( )->GetPosition( cameraPos );
1932 picker->GetPickPosition( pickPoint );
1935 UtilVtk3DGeometriSelection utilVtk3Dgeometriselection;
1936 utilVtk3Dgeometriselection.SetDimentions(_w,_h,_d);
1938 if( utilVtk3Dgeometriselection.FindCubePointsFromPoints( pA, pB, pickPoint, cameraPos ) )
1940 double dist,distMin=999999999;
1941 int i,size=this->_manContModel->GetSizeLstPoints();
1942 for (i=0;i<size;i++)
1944 manualPoint *mp = this->_manContModel->GetManualPoint(i);
1948 dist=utilVtk3Dgeometriselection.DistanceMinPointToLine(p,pA,pB);
1949 if ( (dist<=2*GetRange()) && (dist<distMin) )
1958 // ----------------------------------------------------------------------------
1959 int manualView3DContour::SelectPosiblePoint ( int x, int y, int z )// virtual
1961 SelectAllPossibleSelected(false);
1962 int id=GetIdPoint2(x,y);
1965 SetPointPosibleSelected(id,true);
1973 // ----------------------------------------------------------------------------
1974 // ----------------------------------------------------------------------------
1975 // ----------------------------------------------------------------------------
1980 // ----------------------------------------------------------------------------
1981 // ----------------------------------------------------------------------------
1982 // ----------------------------------------------------------------------------
1983 manualViewBullEyeSector::manualViewBullEyeSector()
1987 // ----------------------------------------------------------------------------
1988 void manualViewBullEyeSector::RefreshContour()
1993 //----------------------------------
1995 _manContModel->UpdateSpline();
1996 nps = _manContModel->GetNumberOfPointsSpline();
2000 for( i = 0; i < nps; i++ )
2002 _manContModel->GetSpline_i_Point(i,&x,&y,&z);
2003 _pts->SetPoint(i , x*_spc[0] , y*_spc[1] , z*_spc[2] );
2009 // ----------------------------------------------------------------------------
2010 // ----------------------------------------------------------------------------
2011 // ----------------------------------------------------------------------------
2014 manualViewBullEye::manualViewBullEye()
2018 // ----------------------------------------------------------------------------
2019 manualViewBullEye::~manualViewBullEye()
2022 int i,size=lstSectorBullEye.size();
2023 for (i=0;i<size;i++)
2025 delete lstSectorBullEye[i];
2027 lstSectorBullEye.clear();
2031 // ----------------------------------------------------------------------------
2032 manualViewBullEye * manualViewBullEye :: Clone()
2034 manualViewBullEye * clone = new manualViewBullEye();
2035 CopyAttributesTo(clone);
2039 // ---------------------------------------------------------------------------
2041 void manualViewBullEye::CopyAttributesTo( manualViewBullEye * cloneObject)
2044 manualViewBaseContour::CopyAttributesTo(cloneObject);
2048 // ----------------------------------------------------------------------------
2049 int manualViewBullEye::GetType() // virtual
2055 // ----------------------------------------------------------------------------
2056 void manualViewBullEye::RefreshContour() // virtual
2058 // External Rectangle
2059 manualViewRoi::RefreshContour();
2061 _manContModel->UpdateSpline();
2062 int np = GetNumberOfPoints( );
2063 // Refres sectors of BullEye(s)
2067 int i,size = lstSectorBullEye.size();
2068 for (i=0;i<size;i++)
2070 lstSectorBullEye[i]->RefreshContour();
2077 // ----------------------------------------------------------------------------
2078 void manualViewBullEye::ConstructVTKObjects() // virtual
2080 manualViewRoi::ConstructVTKObjects();
2083 this->GetSpacing(spc);
2084 manualViewBullEyeSector *mvbc;
2085 manualContourModelBullEye *mcmbe = (manualContourModelBullEye*)this->_manContModel;
2086 int i,size = mcmbe->GetSizeOfSectorLst();
2087 for ( i=0 ; i<size ; i++ )
2089 mvbc = new manualViewBullEyeSector();
2090 mvbc->SetModel( mcmbe->GetModelSector(i) );
2091 mvbc->SetWxVtkBaseView( this->GetWxVtkBaseView() );
2092 mvbc->SetRange( 2 );
2094 mvbc->SetSpacing(spc);
2095 mvbc->SetColorNormalContour(1, 0, 0);
2096 // mvbc->SetColorEditContour(0.5, 0.5, 0.5);
2097 // mvbc->SetColorSelectContour(1, 0.8, 0);
2098 mvbc->SetWidthLine( this->GetWidthLine() );
2100 mvbc->ConstructVTKObjects();
2101 lstSectorBullEye.push_back( mvbc );
2107 // ----------------------------------------------------------------------------
2108 void manualViewBullEye::AddSplineActor() // virtual
2110 manualViewRoi::AddSplineActor();
2111 int i,size=lstSectorBullEye.size();
2112 for (i=0;i<size;i++)
2114 lstSectorBullEye[i]->AddSplineActor();
2118 // ----------------------------------------------------------------------------
2119 void manualViewBullEye::RemoveSplineActor() // virtual
2121 manualViewRoi::RemoveSplineActor();
2122 int i,size=lstSectorBullEye.size();
2123 for (i=0;i<size;i++)
2125 lstSectorBullEye[i]->RemoveSplineActor();
2130 // ----------------------------------------------------------------------------
2131 // ----------------------------------------------------------------------------
2132 // ----------------------------------------------------------------------------
2134 manualViewRoi::manualViewRoi()
2136 _sizePointsContour=5;
2138 // ----------------------------------------------------------------------------
2139 manualViewRoi::~manualViewRoi()
2144 // ----------------------------------------------------------------------------
2145 manualViewRoi * manualViewRoi :: Clone()
2147 manualViewRoi * clone = new manualViewRoi();
2148 CopyAttributesTo(clone);
2152 // ---------------------------------------------------------------------------
2154 void manualViewRoi::CopyAttributesTo( manualViewRoi * cloneObject)
2157 manualViewBaseContour::CopyAttributesTo(cloneObject);
2160 // ----------------------------------------------------------------------------
2161 void manualViewRoi::RefreshContour() // virtual
2163 unsigned int i,ii, np;
2164 np = GetNumberOfPoints( );
2171 for( i = 0; i < np+1; i++ ) {
2173 mp = _manContModel->GetManualPoint(ii);
2176 double XX=mp->GetX(),YY=mp->GetY(),ZZ=mp->GetZ();
2177 // wxVtk2DBaseView *wxvtk2Dbasevie = (wxVtk2DBaseView*)this->GetWxVtkBaseView();
2178 // wxvtk2Dbasevie->TransformCoordinate_spacing_ModelToView(XX,YY,ZZ);
2181 // _pts->SetPoint(i, XX,YY,ZZ );
2182 _pts->SetPoint(i, XX*_spc[0] , YY*_spc[1] , ZZ*_spc[2] );
2186 _pts->SetPoint(0, 0 , 0 , 0);
2187 _pts->SetPoint(1, 0 , 0 , 0);
2192 // ----------------------------------------------------------------------------
2193 int manualViewRoi::GetType() // virtual
2198 // ----------------------------------------------------------------------------
2200 void manualViewRoi::GetMinMax(double &minX,double &minY, double &maxX, double &maxY)
2211 unsigned int size=(unsigned int) _manContModel->GetSizeLstPoints();
2213 for( i = 0; i < size; i++ )
2216 mp=_manContModel->GetManualPoint(i);
2251 // ----------------------------------------------------------------------------
2253 bool manualViewRoi::ifTouchContour(int x,int y, int z) // virtual
2256 double px1=99999,py1=99999,px2=-9999,py2=-99999;
2258 GetMinMax(px1,py1, px2, py2);
2263 TransfromeCoordViewWorld(xx,yy,zz);
2267 double ddx=GetRange();
2268 double ddy=GetRange();
2270 if ((xx>px1-ddx)&&(xx<px2+ddx) && (yy>py1-ddy)&&(yy<py2+ddy))
2275 if ((xx>px1+ddx)&&(xx<px2-ddx) && (yy>py1+ddy)&&(yy<py2-ddy))
2280 if ((ok1==true) && (ok2==false))
2289 // ----------------------------------------------------------------------------
2291 void manualViewRoi::InitMove(int x, int y, int z) // virtual
2297 TransfromeCoordViewWorld(XX,YY,ZZ);
2299 if (_manContModel->GetSizeLstPoints()==4){
2300 mp = _manContModel->GetManualPoint(0);
2301 _dp0[0]= mp->GetX() - XX;
2302 _dp0[1]= mp->GetY() - YY;
2303 _dp0[2]= mp->GetZ();
2305 mp = _manContModel->GetManualPoint(1);
2306 _dp1[0]= mp->GetX() - XX;
2307 _dp1[1]= mp->GetY() - YY;
2308 _dp1[2]= mp->GetZ();
2310 mp = _manContModel->GetManualPoint(2);
2311 _dp2[0]= mp->GetX() - XX;
2312 _dp2[1]= mp->GetY() - YY;
2313 _dp2[2]= mp->GetZ();
2315 mp = _manContModel->GetManualPoint(3);
2316 _dp3[0]= mp->GetX() - XX;
2317 _dp3[1]= mp->GetY() - YY;
2318 _dp3[2]= mp->GetZ();
2322 // ----------------------------------------------------------------------------
2324 void manualViewRoi::MoveContour(int x, int y, int z) // virtual
2330 TransfromeCoordViewWorld(XX,YY,ZZ);
2332 mp = _manContModel->GetManualPoint(0);
2333 mp->SetPoint(_dp0[0]+XX,_dp0[1]+YY,_dp0[2]);
2335 mp = _manContModel->GetManualPoint(1);
2336 mp->SetPoint(_dp1[0]+XX,_dp1[1]+YY,_dp0[2]);
2338 mp = _manContModel->GetManualPoint(2);
2339 mp->SetPoint(_dp2[0]+XX,_dp2[1]+YY,_dp0[2]);
2341 mp = _manContModel->GetManualPoint(3);
2342 mp->SetPoint(_dp3[0]+XX,_dp3[1]+YY,_dp0[2]);
2353 // ----------------------------------------------------------------------------
2354 // ----------------------------------------------------------------------------
2355 // ----------------------------------------------------------------------------
2359 manualViewCircle::manualViewCircle()
2361 // _sizePointsContour=5; // default 100
2363 // ----------------------------------------------------------------------------
2364 manualViewCircle::~manualViewCircle()
2369 // ----------------------------------------------------------------------------
2370 manualViewCircle * manualViewCircle :: Clone()
2372 manualViewCircle * clone = new manualViewCircle();
2373 CopyAttributesTo(clone);
2377 // ---------------------------------------------------------------------------
2379 void manualViewCircle::CopyAttributesTo( manualViewCircle * cloneObject)
2382 manualViewBaseContour::CopyAttributesTo(cloneObject);
2386 // ----------------------------------------------------------------------------
2388 void manualViewCircle::RefreshContour(){ // virtual
2390 manualPoint *mpA,*mpB;
2391 unsigned int i, np,nps;
2395 np = GetNumberOfPoints( );
2396 nps = _manContModel->GetNumberOfPointsSpline();
2397 double deltaAngle=(3.14159265*2)/(nps-1);
2402 mpA = _manContModel->GetManualPoint(0);
2403 mpB = _manContModel->GetManualPoint(1);
2404 difX = mpA->GetX() - mpB->GetX();
2405 difY = mpA->GetY() - mpB->GetY();
2406 radio = sqrt( difX*difX + difY*difY );
2407 manualContourModelCircle *manContModelCir = (manualContourModelCircle*)_manContModel;
2408 manContModelCir->SetRadio(radio);
2410 for( i = 0; i < nps; i++ ) {
2411 manContModelCir->GetSpline_i_Point(i, &XX, &YY, &ZZ);
2412 // angle = deltaAngle*i;
2413 // XX = cos(angle)*radio+mpA->GetX();
2414 // YY = sin(angle)*radio+mpA->GetY();
2416 _pts->SetPoint(i, XX*_spc[0] , YY*_spc[1] , ZZ*_spc[2] );
2419 _pts->SetPoint(0, 0 , 0 , 0);
2420 _pts->SetPoint(1, 0 , 0 , 0);
2426 // ----------------------------------------------------------------------------
2427 int manualViewCircle::GetType() // virtual
2432 // ----------------------------------------------------------------------------
2434 void manualViewCircle::GetMinMax(double &minX,double &minY, double &maxX, double &maxY)
2436 manualPoint *mpA,*mpB;
2440 np = GetNumberOfPoints( );
2443 mpA = _manContModel->GetManualPoint(0);
2444 mpB = _manContModel->GetManualPoint(1);
2445 difX = mpA->GetX() - mpB->GetX();
2446 difY = mpA->GetY() - mpB->GetY();
2447 radio = sqrt( difX*difX + difY*difY );
2448 minX=mpA->GetX()-radio;
2449 minY=mpA->GetY()-radio;
2450 maxX=mpA->GetX()+radio;
2451 maxY=mpA->GetY()+radio;
2461 // ----------------------------------------------------------------------------
2462 bool manualViewCircle::ifTouchContour(int x,int y, int z) // virtual
2465 double px1=99999,py1=99999,px2=-9999,py2=-99999;
2467 GetMinMax(px1,py1, px2, py2);
2472 TransfromeCoordViewWorld(xx,yy,zz);
2476 double ddx=GetRange();
2477 double ddy=GetRange();
2479 if ((xx>px1-ddx)&&(xx<px2+ddx) && (yy>py1-ddy)&&(yy<py2+ddy))
2484 if ((xx>px1+ddx)&&(xx<px2-ddx) && (yy>py1+ddy)&&(yy<py2-ddy))
2489 if ((ok1==true) && (ok2==false))
2498 // ----------------------------------------------------------------------------
2500 void manualViewCircle::InitMove(int x, int y, int z) // virtual
2506 TransfromeCoordViewWorld(XX,YY,ZZ);
2508 if (_manContModel->GetSizeLstPoints()==2){
2509 mp = _manContModel->GetManualPoint(0);
2510 _dp0[0]= mp->GetX() - XX;
2511 _dp0[1]= mp->GetY() - YY;
2512 _dp0[2]= mp->GetZ();
2514 mp = _manContModel->GetManualPoint(1);
2515 _dp1[0]= mp->GetX() - XX;
2516 _dp1[1]= mp->GetY() - YY;
2517 _dp1[2]= mp->GetZ();
2519 mp = _manContModel->GetManualPoint(2);
2520 _dp2[0]= mp->GetX() - XX;
2521 _dp2[1]= mp->GetY() - YY;
2522 _dp2[2]= mp->GetZ();
2524 mp = _manContModel->GetManualPoint(3);
2525 _dp3[0]= mp->GetX() - XX;
2526 _dp3[1]= mp->GetY() - YY;
2527 _dp3[2]= mp->GetZ();
2533 // ----------------------------------------------------------------------------
2534 void manualViewCircle::MoveContour(int x, int y, int z) // virtual
2540 TransfromeCoordViewWorld(XX,YY,ZZ);
2542 mp = _manContModel->GetManualPoint(0);
2543 mp->SetPoint(_dp0[0]+XX,_dp0[1]+YY,_dp0[2]);
2545 mp = _manContModel->GetManualPoint(1);
2546 mp->SetPoint(_dp1[0]+XX,_dp1[1]+YY,_dp0[2]);
2548 // mp = _manContModel->GetManualPoint(2);
2549 // mp->SetPoint(_dp2[0]+XX,_dp2[1]+YY,_dp0[2]);
2551 // mp = _manContModel->GetManualPoint(3);
2552 // mp->SetPoint(_dp3[0]+XX,_dp3[1]+YY,_dp0[2]);
2556 // UpdateViewPoint(2);
2557 // UpdateViewPoint(3);
2563 // ----------------------------------------------------------------------------
2564 // ----------------------------------------------------------------------------
2565 // ----------------------------------------------------------------------------
2569 manualViewLine::manualViewLine()
2572 // ----------------------------------------------------------------------------
2573 manualViewLine::~manualViewLine()
2578 // ----------------------------------------------------------------------------
2579 manualViewLine * manualViewLine :: Clone()
2581 manualViewLine * clone = new manualViewLine();
2582 CopyAttributesTo(clone);
2586 // ---------------------------------------------------------------------------
2588 void manualViewLine::CopyAttributesTo( manualViewLine * cloneObject)
2591 manualViewBaseContour::CopyAttributesTo(cloneObject);
2594 // ----------------------------------------------------------------------------
2595 int manualViewLine::GetType() // virtual
2601 // ----------------------------------------------------------------------------
2603 void manualViewLine::InitMove(int x, int y, int z) // virtual
2609 TransfromeCoordViewWorld(XX,YY,ZZ);
2611 if (_manContModel->GetSizeLstPoints()==2)
2613 mp = _manContModel->GetManualPoint(0);
2614 _dp0[0]= mp->GetX() - XX;
2615 _dp0[1]= mp->GetY() - YY;
2616 _dp0[2]= mp->GetZ();
2618 mp = _manContModel->GetManualPoint(1);
2619 _dp1[0]= mp->GetX() - XX;
2620 _dp1[1]= mp->GetY() - YY;
2621 _dp1[2]= mp->GetZ();
2627 // ----------------------------------------------------------------------------
2628 void manualViewLine::MoveContour(int x, int y, int z) // virtual
2634 TransfromeCoordViewWorld(XX,YY,ZZ);
2636 mp = _manContModel->GetManualPoint(0);
2637 mp->SetPoint(_dp0[0]+XX,_dp0[1]+YY,_dp0[2]);
2639 mp = _manContModel->GetManualPoint(1);
2640 mp->SetPoint(_dp1[0]+XX,_dp1[1]+YY,_dp0[2]);
2648 // ----------------------------------------------------------------------------
2649 // ----------------------------------------------------------------------------
2650 // ----------------------------------------------------------------------------
2653 manualViewBaseContour::manualViewBaseContour()
2657 _manContModel = NULL;
2658 _wxvtkbaseview = NULL;
2660 _posibleSelected = false;
2661 _viewControlPoints = false;
2664 _contourVtkActor = NULL;
2667 _sizePointsContour = 100;
2676 _coulorNormal_r = 1;
2677 _coulorNormal_g = 0;
2678 _coulorNormal_b = 1;
2680 _coulorSelection_r = 0;
2681 _coulorSelection_g = 1;
2682 _coulorSelection_b = 0;
2687 // ----------------------------------------------------------------------------
2688 manualViewBaseContour::~manualViewBaseContour()
2690 int i,size=_lstViewPoints.size();
2691 for (i=0;i<size; i++){
2692 delete _lstViewPoints[i];
2694 _lstViewPoints.clear();
2696 // ----------------------------------------------------------------------------
2699 int manualViewBaseContour::GetType() // virtual
2702 //int manualViewBaseContour::GetType() 0;
2703 //int manualViewContour::GetType() 1;
2704 //int manualViewRoi::GetType() 2;
2705 //int manualViewCircle::GetType() 3;
2706 //int manualViewStar::GetType() 4;
2707 //int manualViewLine::GetType() 6;
2712 // ----------------------------------------------------------------------------
2714 void manualViewBaseContour::Save(FILE *pFile)
2716 fprintf(pFile,"TypeView %d\n", GetType() );
2719 // ----------------------------------------------------------------------------
2720 void manualViewBaseContour::Open(FILE *pFile)
2724 // ----------------------------------------------------------------------------
2725 void manualViewBaseContour :: AddCompleteContourActor( bool ifControlPoints )
2727 _viewControlPoints = ifControlPoints;
2728 /*vtkRenderer * theRenderer = */ _wxvtkbaseview->GetRenderer(); // JPRx ??
2733 //Adding each control point
2734 if( ifControlPoints )
2739 // ---------------------------------------------------------------------------
2741 void manualViewBaseContour :: RemoveCompleteContourActor()
2743 /*vtkRenderer * theRenderer =*/ _wxvtkbaseview->GetRenderer(); // JPRx ??
2744 //Removing the spline
2745 RemoveSplineActor();
2748 //Removing each point
2749 RemoveControlPoints();
2753 // ---------------------------------------------------------------------------
2754 manualViewBaseContour * manualViewBaseContour :: Clone( )//virtual
2756 manualViewBaseContour * clone = new manualViewBaseContour();
2757 CopyAttributesTo(clone);
2762 // ---------------------------------------------------------------------------
2764 void manualViewBaseContour::CopyAttributesTo( manualViewBaseContour * cloneObject)
2767 //XXXX::CopyAttributesTo(cloneObject);
2769 cloneObject-> SetWxVtkBaseView( this->_wxvtkbaseview );
2770 cloneObject-> SetSelected( this->GetSelected() );
2771 cloneObject-> SetPosibleSelected( this->GetPosibleSelected() );
2772 cloneObject-> SetIfViewControlPoints( this->GetIfViewControlPoints() );
2773 cloneObject-> SetRange( this->GetRange() );
2774 cloneObject-> SetZ( this->GetZ() );
2775 cloneObject-> SetSpacing( _spc );
2776 cloneObject-> SetColorNormalContour( _coulorNormal_r, _coulorNormal_g, _coulorNormal_b );
2777 cloneObject-> SetColorEditContour( _coulorEdit_r, _coulorEdit_g, _coulorEdit_b );
2778 cloneObject-> SetColorSelectContour( _coulorSelection_r, _coulorSelection_g, _coulorSelection_b );
2780 int i, size = _lstViewPoints.size();
2781 for ( i=0; i<size; i++ )
2783 cloneObject->AddPoint( );
2787 // ----------------------------------------------------------------------------
2788 void manualViewBaseContour :: AddSplineActor()
2790 vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
2791 if (_contourVtkActor!=NULL)
2792 theRenderer->AddActor( _contourVtkActor );
2794 // ----------------------------------------------------------------------------
2795 void manualViewBaseContour :: RemoveSplineActor() // virtual
2797 vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
2798 if (_contourVtkActor!=NULL)
2799 theRenderer->RemoveActor( _contourVtkActor );
2801 // ----------------------------------------------------------------------------
2802 void manualViewBaseContour :: RemoveControlPoints()
2804 if (_wxvtkbaseview!=NULL){
2805 vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
2806 int i,size=_lstViewPoints.size();
2807 for (i=0;i<size; i++)
2809 vtkActor * pointActor = _lstViewPoints[i]->GetVtkActor();
2810 theRenderer->RemoveActor( pointActor );
2813 SetIfViewControlPoints( false );
2815 // ----------------------------------------------------------------------------
2816 void manualViewBaseContour :: AddControlPoints()
2818 vtkRenderer * theRenderer = _wxvtkbaseview->GetRenderer();
2819 SetIfViewControlPoints( true );
2820 if( _viewControlPoints )
2822 int i,size=_lstViewPoints.size();
2823 for (i=0;i<size; i++)
2825 vtkActor * pointActor = _lstViewPoints[i]->GetVtkActor();
2826 theRenderer->AddActor( pointActor );
2830 // ----------------------------------------------------------------------------
2831 void manualViewBaseContour::AddTextActor()
2833 _wxvtkbaseview->GetRenderer()->AddActor2D( _textActor );
2835 // ----------------------------------------------------------------------------
2836 void manualViewBaseContour::RemoveTextActor()
2838 _wxvtkbaseview->GetRenderer()->RemoveActor2D( _textActor );
2840 // ----------------------------------------------------------------------------
2841 void manualViewBaseContour::DeleteVtkObjects()
2843 if ( _contourVtkActor != NULL ) { _contourVtkActor -> Delete(); }
2844 if ( _bboxMapper != NULL ) { _bboxMapper -> Delete(); }
2845 if ( _pts != NULL ) { _pts -> Delete(); }
2846 if ( _pd != NULL ) { _pd -> Delete(); }
2847 _contourVtkActor = NULL;
2854 // ----------------------------------------------------------------------------
2855 void manualViewBaseContour::SetWidthLine(double width)
2858 this->UpdateColorActor();
2860 // for the control points
2861 int id, size = _lstViewPoints.size();
2862 for( id=0; id<size; id++)
2864 this->_lstViewPoints[id]->SetWidthLine(_widthline);
2869 // ----------------------------------------------------------------------------
2870 double manualViewBaseContour::GetWidthLine()
2875 // ----------------------------------------------------------------------------
2876 void manualViewBaseContour::ConstructVTKObjects()
2878 //JSTG 29-02-08 -----------------------------------------------
2879 //int i , nps = _sizePointsContour;
2881 int nps = _manContModel->GetNumberOfPointsSpline();
2882 //-------------------------------------------------------------
2884 _pts = vtkPoints::New();
2885 _pts->SetNumberOfPoints(nps);
2887 for (i=0 ; i<nps ; i++){
2888 _pts->SetPoint(i, 0 , 0 , 0 );
2890 // This is for the boundaring inicialisation
2893 _pts->SetPoint(0, 0 , 0 , -1000 );
2894 _pts->SetPoint(1, 0 , 0 , 1000 );
2895 // _pts->SetPoint(0, -1000 , -1000 , -1000 );
2896 // _pts->SetPoint(1, 1000 , 1000 , 1000 );
2899 vtkCellArray *lines = vtkCellArray::New();
2900 lines->InsertNextCell( nps /* +1 */ );
2901 for ( i=0 ; i<nps+1 ; i++ ){
2902 lines->InsertCellPoint(i % nps );
2905 _pd = vtkPolyData::New();
2906 _pd->SetPoints( _pts );
2907 _pd->SetLines( lines );
2908 lines->Delete(); //do not delete lines ??
2910 _contourVtkActor = vtkActor::New();
2911 _bboxMapper = vtkPolyDataMapper::New();
2912 _bboxMapper->ScalarVisibilityOff( );
2914 _bboxMapper->SetInput(_pd);
2915 _bboxMapper->ImmediateModeRenderingOn();
2916 _contourVtkActor->SetMapper(_bboxMapper);
2917 _contourVtkActor->GetProperty()->BackfaceCullingOff();
2921 _pd->ComputeBounds();
2924 _textActor = vtkTextActor::New();
2925 // _textActor->SetDisplayPosition(200, 200);
2926 _textActor->SetInput("");
2927 // Set coordinates to match the old vtkScaledTextActor default value
2928 // _textActor->GetPosition2Coordinate()->SetCoordinateSystemToNormalizedViewport();
2929 // _textActor->GetPosition2Coordinate()->SetValue( 0.2 , 0.2 );
2930 _textActor->GetPositionCoordinate()->SetCoordinateSystemToWorld ();
2931 // _textActor->GetPositionCoordinate()->SetValue( 0.8 , 0.8 );
2933 vtkTextProperty *tprop = _textActor->GetTextProperty();
2934 tprop->SetFontSize(14);
2935 tprop->SetFontFamilyToArial();
2936 tprop->SetColor(0, 0, 1);
2938 // ----------------------------------------------------------------------------
2939 void manualViewBaseContour::CreateNewContour()
2941 ConstructVTKObjects();
2943 _wxvtkbaseview->GetRenderer()->AddActor( _contourVtkActor );
2944 _wxvtkbaseview->GetRenderer()->AddActor2D(_textActor);*/
2945 AddCompleteContourActor();
2947 // ----------------------------------------------------------------------------
2948 void manualViewBaseContour::UpdateViewPoint(int id) // virtual
2950 manualPoint *mp = _manContModel->GetManualPoint(id);
2953 double XX=mp->GetX(),YY=mp->GetY(),ZZ=mp->GetZ();
2954 // wxVtk2DBaseView *wxvtk2Dbasevie = (wxVtk2DBaseView*)this->GetWxVtkBaseView();
2955 // wxvtk2Dbasevie->TransformCoordinate_spacing_ModelToView(XX,YY,ZZ);
2957 _lstViewPoints[id]->SetPositionXY( XX , YY ,_range, ZZ );
2960 // ----------------------------------------------------------------------------
2961 void manualViewBaseContour :: UpdateViewPoints()
2963 int id, size = _lstViewPoints.size();
2964 for( id=0; id<size; id++)
2966 UpdateViewPoint( id );
2970 // ----------------------------------------------------------------------------
2971 void manualViewBaseContour::AddPoint()
2973 manualViewPoint *mvp = new manualViewPoint( this->GetWxVtkBaseView() );
2976 // ----------------------------------------------------------------------------
2977 void manualViewBaseContour::AddPoint( manualViewPoint * manualViewPoint )
2979 _lstViewPoints.push_back( manualViewPoint );
2982 manualViewPoint->SetSpacing(_spc);
2984 vtkActor *actor = manualViewPoint->CreateVtkPointActor();
2985 _wxvtkbaseview->GetRenderer()->AddActor( actor );
2988 // ----------------------------------------------------------------------------
2989 void manualViewBaseContour::InsertPoint(int id)
2991 manualViewPoint *mvp = new manualViewPoint( this->GetWxVtkBaseView() );
2994 mvp->SetSpacing(_spc);
2996 std::vector<manualViewPoint*>::iterator itNum = _lstViewPoints.begin() + id;
2997 _lstViewPoints.insert(itNum,mvp);
2998 _wxvtkbaseview->GetRenderer()->AddActor( mvp->CreateVtkPointActor() );
3000 // ----------------------------------------------------------------------------
3001 void manualViewBaseContour::DeleteContour()
3003 RemoveCompleteContourActor();
3004 /*if (_contourVtkActor!=NULL){
3005 _wxvtkbaseview->GetRenderer()->RemoveActor( _contourVtkActor );
3008 int i,size=_lstViewPoints.size();
3009 for (i=0;i<size;i++){
3010 manualViewBaseContour::DeletePoint(0);
3014 // ----------------------------------------------------------------------------
3015 void manualViewBaseContour::DeletePoint(int id) // virtual
3017 int size=_lstViewPoints.size();
3018 if ( (id>=0) && (id<size) ){
3019 manualViewPoint *mvp =_lstViewPoints[id];
3021 // _handlePicker->DeletePickList(mvp->GetVtkActor());
3022 _wxvtkbaseview->GetRenderer()->RemoveActor( mvp->GetVtkActor() );
3023 std::vector<manualViewPoint*>::iterator itNum = _lstViewPoints.begin() + id;
3024 _lstViewPoints.erase(itNum);
3029 // ----------------------------------------------------------------------------
3030 void manualViewBaseContour::DeletePoint(int x, int y, int z)
3032 int id=GetIdPoint(x,y,z);
3037 // ----------------------------------------------------------------------------
3038 void manualViewBaseContour::SetSelected(bool selected)
3042 // ----------------------------------------------------------------------------
3043 void manualViewBaseContour::SetPosibleSelected(bool posibleSelected)
3045 _posibleSelected=posibleSelected;
3047 // ----------------------------------------------------------------------------
3048 bool manualViewBaseContour::GetEditable()
3052 // ----------------------------------------------------------------------------
3053 void manualViewBaseContour::SetEditable( bool * condition )
3055 _editable = condition;
3057 // ----------------------------------------------------------------------------
3058 bool manualViewBaseContour::GetSelected()
3062 // ----------------------------------------------------------------------------
3063 bool manualViewBaseContour::GetPosibleSelected()
3065 return _posibleSelected;
3067 // ----------------------------------------------------------------------------
3068 void manualViewBaseContour::DeleteSelectedPoints()
3070 int i,size=_lstViewPoints.size();
3071 for (i=size-1;i>=0;i--){
3072 if (_lstViewPoints[i]->GetSelected()==true){
3078 // ----------------------------------------------------------------------------
3079 void manualViewBaseContour::SelectPoint(int i, bool select)
3081 _lstViewPoints[i]->SetSelected(select);
3083 // ----------------------------------------------------------------------------
3084 void manualViewBaseContour::SelectLstPoints()
3088 // ----------------------------------------------------------------------------
3089 void manualViewBaseContour::SelectAllPoints(bool select)
3091 int i,size=_lstViewPoints.size();
3092 for (i=0;i<size;i++){
3093 SelectPoint(i,select);
3096 //-----------------------------------------------------------------------------
3097 void manualViewBaseContour:: SetIfViewControlPoints(bool ifShow)
3099 _viewControlPoints = ifShow;
3101 // ----------------------------------------------------------------------------
3102 bool manualViewBaseContour:: GetIfViewControlPoints()
3104 return _viewControlPoints;
3107 // ----------------------------------------------------------------------------
3108 void manualViewBaseContour::SetPointPosibleSelected(int id,bool select)
3110 _lstViewPoints[id]->SetPosibleSelected(select);
3112 // ----------------------------------------------------------------------------
3113 void manualViewBaseContour::SetPointSelected(int id,bool select)
3115 _lstViewPoints[id]->SetSelected(select);
3117 // ----------------------------------------------------------------------------
3118 void manualViewBaseContour::SelectAllPossibleSelected(bool select)
3120 int i,size=_lstViewPoints.size();
3121 for (i=0;i<size;i++){
3122 SetPointPosibleSelected(i,select);
3125 // ----------------------------------------------------------------------------
3126 int manualViewBaseContour::SelectPosiblePoint(int x, int y, int z) // virtual
3128 SelectAllPossibleSelected(false);
3130 int id = GetIdPoint(x,y,z);
3133 SetPointPosibleSelected(id,true);
3137 // ----------------------------------------------------------------------------
3138 bool manualViewBaseContour::SelectPosibleContour(int x, int y, int z)
3141 SetPosibleSelected(result);
3142 int id = GetIdPoint(x,y,z);
3143 if( !GetEditable() && !_selected && id!= -1)
3146 SetPosibleSelected(result);
3150 if ( (GetEditable()==true) && (id==-1 ) && (this->_lstViewPoints.size()>=2) )
3152 if (ifTouchContour(x,y,z)==true)
3155 SetPosibleSelected(result);
3159 if (GetEditable()==false)
3161 if (ifTouchContour(x,y,z)==true)
3164 SetPosibleSelected(result);
3172 // ----------------------------------------------------------------------------
3173 bool manualViewBaseContour::ifTouchContour(int x,int y, int z) // virtual
3177 // ----------------------------------------------------------------------------
3178 void manualViewBaseContour::UnSelectPoint(int i){
3179 _lstViewPoints[i]->SetSelected(false);
3182 // ----------------------------------------------------------------------------
3183 void manualViewBaseContour::UnSelectLstPoints(){
3186 // ----------------------------------------------------------------------------
3187 void manualViewBaseContour::UnSelectAllPoints(){
3188 int i,size=_lstViewPoints.size();
3189 for (i=0;i<size;i++){
3194 // ----------------------------------------------------------------------------
3195 void manualViewBaseContour::SetModel(manualContourModel *manContModel){
3196 _manContModel=manContModel;
3198 // ----------------------------------------------------------------------------
3199 void manualViewBaseContour::SetWxVtkBaseView(wxVtkBaseView *wxvtkbaseview){
3200 _wxvtkbaseview = wxvtkbaseview;
3202 // ----------------------------------------------------------------------------
3203 void manualViewBaseContour::RefreshContour() // Virtual
3206 // ----------------------------------------------------------------------------
3207 double* manualViewBaseContour::GetVectorPointsXManualContour(){
3209 int i,size = _sizePointsContour;
3210 double *vx = (double*)malloc(sizeof(double)*size);
3211 for (i=0;i<size;i++){
3212 _pts->GetPoint(i,pp);
3217 // ----------------------------------------------------------------------------
3218 double* manualViewBaseContour::GetVectorPointsYManualContour()
3221 int i,size = _sizePointsContour;
3222 double *vy = (double*)malloc(sizeof(double)*size);
3223 for (i=0;i<size;i++){
3224 _pts->GetPoint(i,pp);
3229 // ----------------------------------------------------------------------------
3230 double* manualViewBaseContour::GetVectorPointsZManualContour()
3233 int i,size = _sizePointsContour;
3234 double *vz = (double*)malloc(sizeof(double)*size);
3235 for (i=0;i<size;i++){
3236 _pts->GetPoint(i,pp);
3241 // ----------------------------------------------------------------------------
3242 void manualViewBaseContour::Refresh() // virtual
3244 if (_contourVtkActor!=NULL){
3247 int i,size=_lstViewPoints.size();
3248 for (i=0;i<size;i++){
3250 _lstViewPoints[i]->UpdateColorActor();
3254 if (_show_text==true)
3259 vtkRenderWindowInteractor *vri = _wxvtkbaseview->GetWxVTKRenderWindowInteractor ();
3262 _wxvtkbaseview->GetRenWin()->Render();
3266 // ----------------------------------------------------------------------------
3267 void manualViewBaseContour::RefreshText() // virtual
3269 if( _textActor!=NULL)
3270 _textActor -> SetInput(" ");
3272 // ----------------------------------------------------------------------------
3273 void manualViewBaseContour::SetColorNormalContour(double r, double g, double b)
3275 _coulorNormal_r = r;
3276 _coulorNormal_g = g;
3277 _coulorNormal_b = b;
3279 // ----------------------------------------------------------------------------
3280 void manualViewBaseContour::GetColorNormalContour(double &r, double &g, double &b)
3282 r = _coulorNormal_r;
3283 g = _coulorNormal_g;
3284 b = _coulorNormal_b;
3286 // ----------------------------------------------------------------------------
3287 void manualViewBaseContour::SetColorEditContour(double r, double g, double b)
3293 // ----------------------------------------------------------------------------
3294 void manualViewBaseContour::GetColorEditContour(double &r, double &g, double &b)
3300 // ----------------------------------------------------------------------------
3301 void manualViewBaseContour::SetColorSelectContour(double r, double g, double b)
3303 _coulorSelection_r = r;
3304 _coulorSelection_g = g;
3305 _coulorSelection_b = b;
3307 // ----------------------------------------------------------------------------
3308 void manualViewBaseContour::GetColorSelectContour(double &r, double &g, double &b)
3310 r = _coulorSelection_r;
3311 g = _coulorSelection_g;
3312 b = _coulorSelection_b;
3314 // ----------------------------------------------------------------------------
3315 void manualViewBaseContour::UpdateColorActor()
3317 if (_contourVtkActor!=NULL)
3319 _contourVtkActor->GetProperty()->SetLineWidth( _widthline );
3320 _contourVtkActor->GetProperty()->SetDiffuseColor( _coulorNormal_r , _coulorNormal_g , _coulorNormal_b );
3321 if (_posibleSelected || (_posibleSelected && GetEditable() ) )
3323 _contourVtkActor->GetProperty()->SetDiffuseColor( _coulorEdit_r , _coulorEdit_g , _coulorEdit_b );
3327 _contourVtkActor->GetProperty()->SetDiffuseColor( _coulorSelection_r , _coulorSelection_g , _coulorSelection_b );
3331 // ----------------------------------------------------------------------------
3332 int manualViewBaseContour::GetIdPoint(int x, int y, int z) // virtual
3335 if (_manContModel!=NULL){
3339 TransfromeCoordViewWorld(xx,yy,zz);
3340 ii=_manContModel->GetIdPoint(xx,yy,zz,_range,-1);
3345 // ----------------------------------------------------------------------------
3348 int manualViewBaseContour::GetNumberOfPoints()
3350 return _lstViewPoints.size();
3353 // ----------------------------------------------------------------------------
3355 //JSTG 25-02-08 ---------------------------------------------------------------
3356 /*int manualViewBaseContour::GetNumberOfPointsSpline()
3358 return _sizePointsContour;
3360 //----------------------------------------------------------------------------
3362 //JSTG 25-02-08 ---------------------------------------------------------------
3363 /*void manualViewBaseContour::SetNumberOfPointsSpline(int size)
3365 _sizePointsContour = size;
3367 //----------------------------------------------------------------------------
3369 void manualViewBaseContour::TransfromeCoordViewWorld(double &X, double &Y, double &Z, int type) // Virtual
3371 _wxvtkbaseview->TransfromeCoordScreenToWorld(X, Y, Z, type);
3376 // wxVtk2DBaseView *wxvtk2Dbaseview = (wxVtk2DBaseView*)_wxvtkbaseview;
3377 // wxvtk2Dbaseview->TransformCoordinate_spacing_ModelToView(X,Y,Z);
3380 // ----------------------------------------------------------------------------
3381 void manualViewBaseContour::SetRange(int range)
3385 // ----------------------------------------------------------------------------
3386 int manualViewBaseContour::GetRange()
3390 // ----------------------------------------------------------------------------
3391 void manualViewBaseContour::SetZ(int z)
3395 // ----------------------------------------------------------------------------
3396 int manualViewBaseContour::GetZ()
3401 // ----------------------------------------------------------------------------
3402 void manualViewBaseContour::InitMove(int x, int y, int z) // virtual
3406 // ----------------------------------------------------------------------------
3407 void manualViewBaseContour::MoveContour(int x, int y, int z) // virtual
3410 // ----------------------------------------------------------------------------
3411 void manualViewBaseContour::MoveContour(int horizontalUnits, int verticalUnits )// virtual
3415 // ----------------------------------------------------------------------------
3416 void manualViewBaseContour::GetMinMax( double &minX,double &minY, double &minZ, double &maxX, double &maxY, double &maxZ )// virtual
3421 int size=_manContModel->GetSizeLstPoints();
3426 bool ifFindZ = minZ!=-1.0 && maxZ!=-1.0;
3432 for( i = 0; i < size; i++ )
3434 mp=_manContModel->GetManualPoint(i);
3486 // ----------------------------------------------------------------------------
3487 void manualViewBaseContour::ClearContour()
3489 if (_contourVtkActor!=NULL){
3490 _wxvtkbaseview->GetRenderer()->RemoveActor( _contourVtkActor );
3493 int i,size=_lstViewPoints.size();
3494 for (i=0;i<size;i++){
3499 // ----------------------------------------------------------------------------
3500 void manualViewBaseContour::ClearPoint(int id)
3504 // ----------------------------------------------------------------------------
3505 void manualViewBaseContour::SetVisible(bool ok)
3516 int i,size=_lstViewPoints.size();
3517 for (i=0;i<size;i++){
3518 actor = _lstViewPoints[i]->GetVtkActor();
3519 actor->GetProperty()->SetOpacity( opacity );
3521 _contourVtkActor->GetProperty()->SetOpacity( opacity );
3522 _textActor->GetProperty()->SetOpacity( opacity );
3523 _textActor->SetInput(" ");
3526 // ----------------------------------------------------------------------------
3527 void manualViewBaseContour::SetShowText(bool ok)
3530 if (_show_text==false)
3532 _textActor->SetInput(" ");
3535 // ----------------------------------------------------------------------------
3536 wxVtkBaseView *manualViewBaseContour::GetWxVtkBaseView()
3538 return this->_wxvtkbaseview;
3540 // ----------------------------------------------------------------------------
3541 void manualViewBaseContour::GetSpacing(double spc[3])
3547 // ----------------------------------------------------------------------------
3548 void manualViewBaseContour::SetSpacing(double spc[3])
3556 // ----------------------------------------------------------------------------
3557 // ----------------------------------------------------------------------------
3558 // ----------------------------------------------------------------------------
3560 // _type = 0 Sagital
3561 // _type = 1 Coronal
3563 // _type = -1 View 3D
3565 manualContour3VControler::manualContour3VControler(int type)
3570 // _manViewBaseCont1 = NULL;
3571 // _manViewBaseCont2 = NULL;
3572 // _manViewBaseCont3 = NULL;
3574 //----------------------------------------------------------------------------
3575 manualContour3VControler::~manualContour3VControler()
3579 // ----------------------------------------------------------------------------
3580 manualContour3VControler * manualContour3VControler :: Clone() // virtual
3582 manualContour3VControler * clone = new manualContour3VControler( this->GetType() );
3583 CopyAttributesTo(clone);
3587 // ---------------------------------------------------------------------------
3588 void manualContour3VControler::CopyAttributesTo( manualContour3VControler * cloneObject)
3591 manualContourControler::CopyAttributesTo(cloneObject);
3593 cloneObject->SetVtkMPRBaseData( this->GetVtkMPRBaseData() );
3595 // Remember to add ManualViewBaseContour with "AddManualViewBaseContour"
3598 // ----------------------------------------------------------------------------
3599 int manualContour3VControler::GetType()
3604 // ----------------------------------------------------------------------------
3605 void manualContour3VControler::AddPoint_Others()
3607 manualViewBaseContour *mvbc;
3608 int i,size=this->_lstManualViewBaseContour.size();
3609 for ( i = 0 ; i < size ; i++ )
3611 mvbc = _lstManualViewBaseContour[i];
3616 // if (_manViewBaseCont1!=NULL){
3617 // _manViewBaseCont1->AddPoint();
3618 // _manViewBaseCont2->AddPoint();
3619 // _manViewBaseCont3->AddPoint();
3620 // this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3623 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3625 // ----------------------------------------------------------------------------
3626 void manualContour3VControler::AddPoint( int x, int y, int z ) // virtual
3629 z=(int)_vtkmprbasedata->GetZ();
3630 if (GetManualContourModel()!=NULL){
3634 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz,_type);
3638 xx=_vtkmprbasedata->GetX();
3643 yy=_vtkmprbasedata->GetY();
3647 /*int id = */ GetManualContourModel()->AddPoint(xx,yy,zz); // JPRx
3648 GetManualViewBaseContour()->AddPoint();
3654 // ----------------------------------------------------------------------------
3655 void manualContour3VControler::InsertPoint_Others(int id)
3658 manualViewBaseContour *mvbc;
3659 int i,size=this->_lstManualViewBaseContour.size();
3660 for ( i = 0 ; i < size ; i++ )
3662 mvbc = _lstManualViewBaseContour[i];
3663 mvbc->InsertPoint(id);
3667 if (_manViewBaseCont1!=NULL){
3668 _manViewBaseCont1->InsertPoint(id);
3669 _manViewBaseCont2->InsertPoint(id);
3670 _manViewBaseCont3->InsertPoint(id);
3671 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3675 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3678 // ----------------------------------------------------------------------------
3679 void manualContour3VControler::InsertPoint(int x, int y, int z)
3682 if (GetManualContourModel()!=NULL){
3683 if (GetManualContourModel()->GetSizeLstPoints()>1){
3684 z=(int)_vtkmprbasedata->GetZ();
3688 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz,_type);
3691 xx=_vtkmprbasedata->GetX();
3696 yy=_vtkmprbasedata->GetY();
3699 id = GetManualContourModel()->InsertPoint(xx,yy,zz);
3701 GetManualViewBaseContour()->InsertPoint(id);
3702 InsertPoint_Others(0);
3709 // ----------------------------------------------------------------------------
3713 void manualContour3VControler::SetModelView ( manualContourModel *manContModel,
3714 manualViewBaseContour *manViewBaseCont0,
3715 manualViewBaseContour *manViewBaseCont1,
3716 manualViewBaseContour *manViewBaseCont2,
3717 manualViewBaseContour *manViewBaseCont3)
3719 manualContourControler::SetModelView(manContModel,manViewBaseCont0);
3720 _manViewBaseCont1 = manViewBaseCont1;
3721 _manViewBaseCont2 = manViewBaseCont2;
3722 _manViewBaseCont3 = manViewBaseCont3;
3726 // ----------------------------------------------------------------------------
3727 void manualContour3VControler::AddManualViewBaseContour( manualViewBaseContour *manViewBaseCont )
3729 _lstManualViewBaseContour.push_back( manViewBaseCont );
3732 // ----------------------------------------------------------------------------
3733 void manualContour3VControler::SetVtkMPRBaseData (vtkMPRBaseData *vtkmprbasedata )
3735 _vtkmprbasedata=vtkmprbasedata;
3737 // ----------------------------------------------------------------------------
3738 vtkMPRBaseData *manualContour3VControler::GetVtkMPRBaseData()
3740 return _vtkmprbasedata;
3742 // ----------------------------------------------------------------------------
3743 void manualContour3VControler::SetPoint( int id ,int x ,int y ,int z ) // virtual
3745 z=(int)_vtkmprbasedata->GetZ();
3746 if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
3750 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz,_type);
3754 xx=_vtkmprbasedata->GetX();
3758 yy=_vtkmprbasedata->GetY();
3761 manualPoint *mp = GetManualContourModel()->GetManualPoint(id);
3762 mp->SetPoint(xx,yy,zz);
3766 // ----------------------------------------------------------------------------
3767 void manualContour3VControler::DeleteActualMousePoint_Others(int id)
3769 manualViewBaseContour *mvbc;
3770 int i,size=this->_lstManualViewBaseContour.size();
3771 for ( i = 0 ; i < size ; i++ )
3773 mvbc = _lstManualViewBaseContour[i];
3774 mvbc->DeletePoint(id);
3779 if (_manViewBaseCont1!=NULL){
3780 _manViewBaseCont1->DeletePoint(id);
3781 _manViewBaseCont2->DeletePoint(id);
3782 _manViewBaseCont3->DeletePoint(id);
3784 _manViewBaseCont1->Refresh();
3785 _manViewBaseCont2->Refresh();
3786 _manViewBaseCont3->Refresh();
3788 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3791 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3793 // ----------------------------------------------------------------------------
3794 void manualContour3VControler::DeleteActualMousePoint(int x, int y)// virtual
3796 int id=GetManualViewBaseContour()->GetIdPoint ( x , y , GetZ() );
3798 manualContourBaseControler::DeleteActualMousePoint( x , y );
3799 DeleteActualMousePoint_Others( id );
3802 // ----------------------------------------------------------------------------
3803 void manualContour3VControler::MouseMove_Others(int id) // virtual
3805 manualViewBaseContour *mvbc;
3806 int i,size=this->_lstManualViewBaseContour.size();
3807 for ( i = 0 ; i < size ; i++ )
3809 mvbc = _lstManualViewBaseContour[i];
3810 mvbc->SelectAllPossibleSelected(false);
3813 mvbc->SetPointPosibleSelected(id,true);
3815 mvbc->SetPosibleSelected ( GetManualViewBaseContour()->GetPosibleSelected() );
3821 if (_manViewBaseCont1!=NULL){
3822 _manViewBaseCont1->SelectAllPossibleSelected(false);
3823 _manViewBaseCont2->SelectAllPossibleSelected(false);
3824 _manViewBaseCont3->SelectAllPossibleSelected(false);
3826 _manViewBaseCont1->SetPointPosibleSelected(id,true);
3827 _manViewBaseCont2->SetPointPosibleSelected(id,true);
3828 _manViewBaseCont3->SetPointPosibleSelected(id,true);
3830 _manViewBaseCont1->SetPosibleSelected ( GetManualViewBaseContour()->GetPosibleSelected() );
3831 _manViewBaseCont2->SetPosibleSelected ( GetManualViewBaseContour()->GetPosibleSelected() );
3832 _manViewBaseCont3->SetPosibleSelected ( GetManualViewBaseContour()->GetPosibleSelected() );
3834 _manViewBaseCont1->Refresh();
3835 _manViewBaseCont2->Refresh();
3836 _manViewBaseCont3->Refresh();
3838 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3841 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3845 // ----------------------------------------------------------------------------
3846 void manualContour3VControler::MouseMove(int x, int y) // virtual
3848 manualContourControler::MouseMove( x , y );
3849 int id=GetManualViewBaseContour()->GetIdPoint(x,y,GetZ());
3850 MouseMove_Others( id );
3853 // ----------------------------------------------------------------------------
3854 void manualContour3VControler::OnChar_Others()
3856 manualViewBaseContour *mvbc;
3857 int i,size=this->_lstManualViewBaseContour.size();
3858 for ( i = 0 ; i < size ; i++ )
3860 mvbc = _lstManualViewBaseContour[i];
3865 _manViewBaseCont1->Refresh();
3866 _manViewBaseCont2->Refresh();
3867 _manViewBaseCont3->Refresh();
3869 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3871 // ----------------------------------------------------------------------------
3872 bool manualContour3VControler::OnChar()
3874 manualContourControler::OnChar();
3878 // ----------------------------------------------------------------------------
3879 void manualContour3VControler::ResetContour() // virtual
3881 manualContourControler::ResetContour();
3882 ResetContour_Others();
3885 // ----------------------------------------------------------------------------
3886 void manualContour3VControler::ResetContour_Others()
3888 manualViewBaseContour *mvbc;
3889 int i,size=this->_lstManualViewBaseContour.size();
3890 for ( i = 0 ; i < size ; i++ )
3892 mvbc = _lstManualViewBaseContour[i];
3893 mvbc->DeleteContour();
3894 mvbc->CreateNewContour();
3899 _manViewBaseCont1->DeleteContour();
3900 _manViewBaseCont2->DeleteContour();
3901 _manViewBaseCont3->DeleteContour();
3902 _manViewBaseCont1->CreateNewContour();
3903 _manViewBaseCont2->CreateNewContour();
3904 _manViewBaseCont3->CreateNewContour();
3908 // ----------------------------------------------------------------------------
3909 // ----------------------------------------------------------------------------
3910 // ----------------------------------------------------------------------------
3911 manualContour3DControler::manualContour3DControler()
3914 // ----------------------------------------------------------------------------
3915 manualContour3DControler::~manualContour3DControler()
3918 // ----------------------------------------------------------------------------
3919 manualContour3DControler * manualContour3DControler :: Clone() // virtual
3921 manualContour3DControler * clone = new manualContour3DControler();
3922 CopyAttributesTo(clone);
3926 // ---------------------------------------------------------------------------
3927 void manualContour3DControler::CopyAttributesTo( manualContour3DControler * cloneObject)
3930 manualContourControler::CopyAttributesTo(cloneObject);
3932 cloneObject->SetVtkMPRBaseData( this->GetVtkMPRBaseData() );
3935 // ----------------------------------------------------------------------------
3936 bool manualContour3DControler::OnLeftButtonDown()
3939 wxVTKRenderWindowInteractor *wxVTKiren;
3940 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk3DBaseView()->GetWxVTKRenderWindowInteractor();
3941 wxVTKiren->GetEventPosition(X,Y);
3942 MouseClickLeft(X,Y);
3945 // ----------------------------------------------------------------------------
3946 void manualContour3DControler::ResetOrientationPlane()
3948 double p[3],rp[3],rn[3];
3949 p[0] = this->GetVtkMPRBaseData()->GetX( );
3950 p[1] = this->GetVtkMPRBaseData()->GetY( );
3951 p[2] = this->GetVtkMPRBaseData()->GetZ( );
3952 this->GetManualContourModel()->GetNearestPointAndNormal(p,rp,rn);
3953 this->GetVtkMPRBaseData()->SetNormal(rn[0],rn[1],rn[2]);
3955 // ----------------------------------------------------------------------------
3956 void manualContour3DControler::MouseClickLeft(int x, int y) // virtual
3958 manualView3DContour *manualview3Dcontour=(manualView3DContour*)GetManualViewBaseContour();
3959 int id=manualview3Dcontour->GetIdPoint2(x,y);
3960 if ( (GetState()==0) && (id!=-1) )
3962 manualPoint *mp = this->GetManualContourModel()->GetManualPoint(id);
3964 this->GetVtkMPRBaseData()->SetX( mp->GetX() );
3965 this->GetVtkMPRBaseData()->SetY( mp->GetY() );
3966 this->GetVtkMPRBaseData()->SetZ( mp->GetZ() );
3967 ResetOrientationPlane();
3968 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
3972 manualContourControler::MouseClickLeft(x,y);
3975 // ----------------------------------------------------------------------------
3976 bool manualContour3DControler::OnChar()
3979 manualContourControler::OnChar();
3980 char keyCode = _vtkInteractorStyleBaseView->GetInteractor()-> GetKeyCode();
3983 ResetOrientationPlane();
3984 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
3989 // ----------------------------------------------------------------------------
3990 void manualContour3DControler::SetVtkMPRBaseData (vtkMPRBaseData *vtkmprbasedata )
3992 _vtkmprbasedata=vtkmprbasedata;
3994 // ----------------------------------------------------------------------------
3995 vtkMPRBaseData *manualContour3DControler::GetVtkMPRBaseData()
3997 return _vtkmprbasedata;
4000 // ----------------------------------------------------------------------------
4001 void manualContour3DControler::InsertPoint(int x, int y, int z ) // virtual
4003 manualContourControler::InsertPoint( x, y, z );
4004 ResetOrientationPlane();
4009 // ----------------------------------------------------------------------------
4010 // ----------------------------------------------------------------------------
4011 // ----------------------------------------------------------------------------
4013 manualContour3V3DControler::manualContour3V3DControler()
4016 // ----------------------------------------------------------------------------
4017 manualContour3V3DControler::~manualContour3V3DControler()
4021 // ----------------------------------------------------------------------------
4022 manualContour3V3DControler * manualContour3V3DControler :: Clone() // virtual
4024 manualContour3V3DControler * clone = new manualContour3V3DControler();
4025 CopyAttributesTo(clone);
4029 // ---------------------------------------------------------------------------
4030 void manualContour3V3DControler::CopyAttributesTo( manualContour3V3DControler * cloneObject)
4033 manualContour3DControler::CopyAttributesTo(cloneObject);
4035 cloneObject->SetManualContour3VControler( this->GetManualContour3VControler() );
4037 // ----------------------------------------------------------------------------
4038 void manualContour3V3DControler::InsertPoint(int x, int y, int z ) // virtual
4040 manualContour3DControler::InsertPoint( x, y, z );
4041 _manualcontour3Vcontroler->InsertPoint_Others(0);
4043 // ----------------------------------------------------------------------------
4044 void manualContour3V3DControler::AddPoint( int x, int y, int z )
4046 manualContour3DControler::AddPoint( x, y, z );
4047 _manualcontour3Vcontroler->AddPoint_Others();
4049 // ----------------------------------------------------------------------------
4050 void manualContour3V3DControler::DeleteActualMousePoint(int x, int y)
4052 int id = GetManualViewBaseContour()->GetIdPoint ( x , y , GetZ() );
4053 manualContour3DControler::DeleteActualMousePoint( x , y );
4054 _manualcontour3Vcontroler->DeleteActualMousePoint_Others(id);
4056 // ----------------------------------------------------------------------------
4057 void manualContour3V3DControler::MouseMove( int x, int y )
4059 int ss =this->_vtkInteractorStyleBaseView->vtkInteractorStyle::GetState();
4060 if ((this->GetState()!=7) && (ss!=1)){
4061 manualContour3DControler::MouseMove( x , y );
4062 int id = GetManualViewBaseContour()->GetIdPoint ( x , y , GetZ() );
4063 _manualcontour3Vcontroler->MouseMove_Others(id);
4066 // ----------------------------------------------------------------------------
4067 void manualContour3V3DControler::SetManualContour3VControler(manualContour3VControler *manualcontour3Vcontroler)
4069 _manualcontour3Vcontroler = manualcontour3Vcontroler;
4071 // ----------------------------------------------------------------------------
4072 manualContour3VControler *manualContour3V3DControler::GetManualContour3VControler()
4074 return _manualcontour3Vcontroler;
4076 // ----------------------------------------------------------------------------
4077 bool manualContour3V3DControler::OnChar() // virtual
4079 if (manualContour3DControler::OnChar()==false )
4081 _manualcontour3Vcontroler->OnChar_Others();
4086 // ----------------------------------------------------------------------------
4087 void manualContour3V3DControler::ResetContour() // virtual
4089 manualContourControler::ResetContour();
4090 _manualcontour3Vcontroler->ResetContour_Others();
4094 // ----------------------------------------------------------------------------
4095 // ----------------------------------------------------------------------------
4096 // ----------------------------------------------------------------------------
4098 // _state = 0 // ..nothing..
4099 // _state = 1 // move with add point
4100 // _state = 5 // move
4101 // _state = 6 // move with insert point
4102 // _state = 7 // move with non selection
4104 manualContourControler::manualContourControler()
4106 _easyCreation = true;
4109 // ----------------------------------------------------------------------------
4110 manualContourControler::~manualContourControler()
4113 // ----------------------------------------------------------------------------
4114 manualContourControler * manualContourControler :: Clone() // virtual
4116 manualContourControler * clone = new manualContourControler();
4117 CopyAttributesTo(clone);
4120 // ---------------------------------------------------------------------------
4121 void manualContourControler::CopyAttributesTo( manualContourControler * cloneObject)
4124 manualContourBaseControler::CopyAttributesTo(cloneObject);
4125 cloneObject->SetEasyCreation( this->GetEasyCreation() );
4128 // ----------------------------------------------------------------------------
4129 void manualContourControler::Configure() //virtual
4131 // this->_manContModel->SetNumberOfPointsSpline(100);
4134 // ----------------------------------------------------------------------------
4135 void manualContourControler::MouseClickLeft(int x, int y){
4140 int size= GetManualViewBaseContour()->GetNumberOfPoints();
4142 // Insert a Control Point with shift+ClickLeft
4143 // int tt = GetState(); // JPRx
4144 vtkRenderWindowInteractor *vtkrenderwindowinteractor = _vtkInteractorStyleBaseView->GetInteractor();
4148 if ( (_vtkInteractorStyleBaseView!=NULL) && (GetState()==0) && ( (vtkrenderwindowinteractor!=NULL) && (vtkrenderwindowinteractor->GetShiftKey()==1) ) )
4154 // Start to Insert Control Points with ClickLeft (Empty contour)
4155 if ((GetState()==0) && (size==0) && (_easyCreation==true) )
4161 // Continuie to Insert Control Points with ClickLeft (After being empty the contour)
4162 if ((GetState()==1) && (_easyCreation==true) )
4166 _bakIdPoint=GetNumberOfPointsManualContour() - 1;
4168 // Insert Control Points IF Contour si Selected
4169 if ((GetState()==0) && GetManualViewBaseContour()->GetPosibleSelected() )
4173 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4176 // Chose id of Control Point to be move
4177 if ( (GetState()==0 || GetState()==6) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 ) )
4180 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4183 // If nothing selected _state=7
4184 if ( (GetState()==0) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)==-1 ) )
4187 _bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4193 SetPosibleToMove( true );
4194 GetManualViewBaseContour()->SetSelected( GetManualViewBaseContour()->GetPosibleSelected() );
4196 if ( GetState() == 0 && GetManualViewBaseContour()->GetPosibleSelected() )
4200 GetManualViewBaseContour()->InitMove(x,y,z);
4205 GetManualViewBaseContour()->Refresh();
4208 // ----------------------------------------------------------------------------
4209 void manualContourControler::MouseMove(int x, int y) // virtual
4212 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
4213 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
4214 if (GetState()==1){ SetPoint( _bakIdPoint , x , y ,z); }
4215 if (GetState()==5){ SetPoint( _bakIdPoint , x , y ,z); }
4216 if ( GetState()==6 && !IsEditable() && GetPosibleToMove() &&IsMoving() )
4218 GetManualViewBaseContour()->MoveContour(x,y,z);
4220 if (GetState()!=7 || GetManualViewBaseContour()->GetPosibleSelected() ){
4221 GetManualViewBaseContour()->Refresh();
4222 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
4226 GetManualViewBaseContour()->RemoveControlPoints();
4227 GetManualViewBaseContour()->RemoveTextActor();
4228 GetManualViewBaseContour()->Refresh();
4229 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
4234 // ----------------------------------------------------------------------------
4235 void manualContourControler::MouseDLeft( int x, int y)//virtual
4237 manualContourBaseControler::MouseDLeft( x, y);
4240 GetManualViewBaseContour()->AddControlPoints();
4241 GetManualViewBaseContour()->AddTextActor();
4242 GetManualViewBaseContour()->Refresh();
4243 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
4246 // ----------------------------------------------------------------------------
4247 void manualContourControler::SetEasyCreation(bool easyCreation)
4249 _easyCreation=easyCreation;
4251 // ----------------------------------------------------------------------------
4252 bool manualContourControler::GetEasyCreation()
4254 return _easyCreation;
4258 // ----------------------------------------------------------------------------
4259 // ----------------------------------------------------------------------------
4260 // ----------------------------------------------------------------------------
4261 manualContourPerpPlaneControler::manualContourPerpPlaneControler()
4263 _flagMouseMove = true;
4265 // ----------------------------------------------------------------------------
4266 manualContourPerpPlaneControler::~manualContourPerpPlaneControler()
4269 // ----------------------------------------------------------------------------
4270 manualContourPerpPlaneControler * manualContourPerpPlaneControler :: Clone() // virtual
4272 manualContourPerpPlaneControler * clone = new manualContourPerpPlaneControler();
4273 CopyAttributesTo(clone);
4277 // ---------------------------------------------------------------------------
4278 void manualContourPerpPlaneControler::CopyAttributesTo( manualContourPerpPlaneControler * cloneObject)
4281 manualContourControler::CopyAttributesTo(cloneObject);
4283 cloneObject->SetVtkMPRBaseData( this->GetVtkMPRBaseData() );
4284 cloneObject->SetManualContour3VControler( this->GetManualContour3VControler() );
4285 cloneObject->SetVtkInteractorStylePlane2D( this->GetVtkInteractorStylePlane2D() );
4288 // ----------------------------------------------------------------------------
4289 void manualContourPerpPlaneControler::SetVtkMPRBaseData(vtkMPRBaseData *vtkmprbasedata)
4291 _vtkmprbasedata = vtkmprbasedata;
4294 // ----------------------------------------------------------------------------
4295 vtkMPRBaseData *manualContourPerpPlaneControler::GetVtkMPRBaseData()
4297 return _vtkmprbasedata;
4301 // ----------------------------------------------------------------------------
4302 void manualContourPerpPlaneControler::InsertPoint(int x, int y, int z ) // virtual
4304 manualContourControler::InsertPoint( x, y, z );
4305 _manualcontour3Vcontroler->InsertPoint_Others(0);
4307 // ----------------------------------------------------------------------------
4308 void manualContourPerpPlaneControler::AddPoint( int x, int y, int z )
4310 manualContourControler::AddPoint( x, y, z );
4311 _manualcontour3Vcontroler->AddPoint_Others();
4313 // ----------------------------------------------------------------------------
4314 void manualContourPerpPlaneControler::DeleteActualMousePoint(int x, int y)
4316 int id = GetManualViewBaseContour()->GetIdPoint ( x , y , GetZ() );
4317 manualContourControler::DeleteActualMousePoint( x , y );
4318 _manualcontour3Vcontroler->DeleteActualMousePoint_Others(id);
4320 // ----------------------------------------------------------------------------
4321 void manualContourPerpPlaneControler::MouseMove( int x, int y )
4323 _flagMouseMove = true;
4324 int ss =this->_vtkInteractorStyleBaseView->vtkInteractorStyle::GetState();
4325 if ((this->GetState()!=7) && (ss!=1)){
4326 manualContourControler::MouseMove( x , y );
4327 int id = GetManualViewBaseContour()->GetIdPoint ( x , y , GetZ() );
4330 _manualcontour3Vcontroler->MouseMove_Others(id);
4331 _flagMouseMove = false;
4335 // ----------------------------------------------------------------------------
4336 void manualContourPerpPlaneControler::SetManualContour3VControler(manualContour3VControler *manualcontour3Vcontroler)
4338 _manualcontour3Vcontroler = manualcontour3Vcontroler;
4340 // ----------------------------------------------------------------------------
4341 manualContour3VControler * manualContourPerpPlaneControler::GetManualContour3VControler()
4343 return _manualcontour3Vcontroler;
4345 // ----------------------------------------------------------------------------
4346 bool manualContourPerpPlaneControler::OnChar() // virtual
4348 if (manualContourControler::OnChar()==false )
4350 _manualcontour3Vcontroler->OnChar_Others();
4354 // ----------------------------------------------------------------------------
4355 bool manualContourPerpPlaneControler::OnMouseMove() // virtual
4357 manualContourControler::OnMouseMove();
4358 return _flagMouseMove;
4360 // ----------------------------------------------------------------------------
4361 bool manualContourPerpPlaneControler::OnLeftDClick() // virtual
4363 manualContourControler::OnLeftDClick();
4364 return _flagMouseDClick;
4366 // ----------------------------------------------------------------------------
4367 void manualContourPerpPlaneControler::ResetContour() // virtual
4369 manualContourControler::ResetContour();
4370 _manualcontour3Vcontroler->ResetContour_Others();
4373 // ----------------------------------------------------------------------------
4374 void manualContourPerpPlaneControler::MouseDLeft( int x, int y) // virtual
4376 _flagMouseDClick=true;
4377 manualContourControler::MouseDLeft(x,y);
4379 if (GetManualViewBaseContour()->ifTouchContour(x,y,0)==true)
4381 _flagMouseDClick = false;
4382 _vtkinteractorstyleplane2D->OnLeftDClick();
4383 ResetOrientationPlane();
4384 this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
4387 // int id=GetManualViewBaseContour()->GetIdPoint(x,y,GetZ());
4388 // if ( (GetState()==0) && (id!=-1) )
4390 // manualPoint *mp = this->GetManualContourModel()->GetManualPoint(id);
4391 // _vtkmprbasedata->SetX( mp->GetX() );
4392 // _vtkmprbasedata->SetY( mp->GetY() );
4393 // _vtkmprbasedata->SetZ( mp->GetZ() );
4394 // ResetOrientationPlane();
4395 // this->_vtkInteractorStyleBaseView->SetParent_refresh_waiting();
4401 // ----------------------------------------------------------------------------
4402 void manualContourPerpPlaneControler::ResetOrientationPlane()
4404 double p[3],rp[3],rn[3];
4405 p[0] = _vtkmprbasedata->GetX( );
4406 p[1] = _vtkmprbasedata->GetY( );
4407 p[2] = _vtkmprbasedata->GetZ( );
4408 this->GetManualContourModel()->GetNearestPointAndNormal(p,rp,rn);
4410 _vtkmprbasedata->SetNormal(rn[0],rn[1],rn[2]);
4413 // ----------------------------------------------------------------------------
4414 void manualContourPerpPlaneControler::SetVtkInteractorStylePlane2D(InteractorStyleMaracas *vtkinteractorstyleplane2D)
4416 _vtkinteractorstyleplane2D = vtkinteractorstyleplane2D;
4418 // ----------------------------------------------------------------------------
4419 InteractorStyleMaracas * manualContourPerpPlaneControler::GetVtkInteractorStylePlane2D()
4421 return _vtkinteractorstyleplane2D;
4424 // ----------------------------------------------------------------------------
4425 // ----------------------------------------------------------------------------
4426 // ----------------------------------------------------------------------------
4428 // _state = 0 // ..nothing..
4429 // _state = 5 // move point
4430 // _state = 6 // move all
4431 // _state = 7 // Empty mouse drag
4433 manualRoiControler::manualRoiControler()
4436 // ----------------------------------------------------------------------------
4437 manualRoiControler::~manualRoiControler()
4440 // ----------------------------------------------------------------------------
4441 manualRoiControler * manualRoiControler :: Clone() // virtual
4443 manualRoiControler * clone = new manualRoiControler();
4444 CopyAttributesTo(clone);
4448 // ---------------------------------------------------------------------------
4449 void manualRoiControler::CopyAttributesTo( manualRoiControler * cloneObject)
4452 manualContourBaseControler::CopyAttributesTo(cloneObject);
4455 // ----------------------------------------------------------------------------
4456 void manualRoiControler::Configure() //virtual
4458 this->GetManualContourModel()->SetNumberOfPointsSpline(5);
4461 // ----------------------------------------------------------------------------
4462 void manualRoiControler::MouseClickLeft(int x, int y){
4464 if ( (GetState()==0) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 ) ){
4465 bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4468 if ((GetState()==0) && (GetManualViewBaseContour()->GetPosibleSelected()==true)) {
4469 GetManualViewBaseContour()->InitMove(x,y,z);
4472 int size=GetManualViewBaseContour()->GetNumberOfPoints();
4473 if (GetState()==0) {
4485 bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4488 GetManualViewBaseContour()->Refresh();
4490 // ----------------------------------------------------------------------------
4491 void manualRoiControler::MouseMove(int x, int y) // virtual
4495 // this->_vtkInteractorStyleBaseView->
4497 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
4498 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
4501 SetPoint( bakIdPoint , x , y ,z);
4524 GetManualViewBaseContour()->MoveContour(x,y,z);
4526 GetManualViewBaseContour()->Refresh();
4528 // ----------------------------------------------------------------------------
4529 void manualRoiControler::DeleteActualMousePoint(int x, int y) // virtual
4532 // ----------------------------------------------------------------------------
4533 void manualRoiControler::InitRoi(int ww, int hh, double porcentage)
4538 if (GetManualContourModel()->GetSizeLstPoints() ==0)
4547 double pp1=porcentage;
4548 double pp2=1-porcentage;
4550 mp = GetManualContourModel()->GetManualPoint(2);
4552 mp->SetPoint(ww*pp1,hh*pp1,zz);
4554 mp = GetManualContourModel()->GetManualPoint(1);
4556 mp->SetPoint(ww*pp2,hh*pp1,zz);
4558 mp = GetManualContourModel()->GetManualPoint(0);
4560 mp->SetPoint(ww*pp2,hh*pp2,zz);
4562 mp = GetManualContourModel()->GetManualPoint(3);
4564 mp->SetPoint(ww*pp1,hh*pp2,zz);
4566 GetManualViewBaseContour() ->UpdateViewPoint(0);
4567 GetManualViewBaseContour() ->UpdateViewPoint(1);
4568 GetManualViewBaseContour() ->UpdateViewPoint(2);
4569 GetManualViewBaseContour() ->UpdateViewPoint(3);
4572 GetManualViewBaseContour()->Refresh();
4575 // ----------------------------------------------------------------------------
4576 void manualRoiControler::SetRoi(int x1, int y1,int x2, int y2)
4579 InitRoi( 0 , 0 , 0.2 );
4580 mp = GetManualContourModel()->GetManualPoint(2);
4584 mp = GetManualContourModel()->GetManualPoint(1);
4588 mp = GetManualContourModel()->GetManualPoint(0);
4592 mp = GetManualContourModel()->GetManualPoint(3);
4596 GetManualViewBaseContour() ->UpdateViewPoint(0);
4597 GetManualViewBaseContour() ->UpdateViewPoint(1);
4598 GetManualViewBaseContour() ->UpdateViewPoint(2);
4599 GetManualViewBaseContour() ->UpdateViewPoint(3);
4603 // ----------------------------------------------------------------------------
4604 // ----------------------------------------------------------------------------
4605 // ----------------------------------------------------------------------------
4609 // _state = 0 // ..nothing..
4610 // _state = 5 // move point
4611 // _state = 6 // move all
4612 // _state = 7 // Empty mouse drag
4614 manualCircleControler::manualCircleControler()
4617 // ----------------------------------------------------------------------------
4618 manualCircleControler::~manualCircleControler()
4621 // ----------------------------------------------------------------------------
4622 manualCircleControler * manualCircleControler :: Clone() // virtual
4624 manualCircleControler * clone = new manualCircleControler();
4625 CopyAttributesTo(clone);
4629 // ---------------------------------------------------------------------------
4630 void manualCircleControler::CopyAttributesTo( manualCircleControler * cloneObject)
4633 manualContourBaseControler::CopyAttributesTo(cloneObject);
4636 // ----------------------------------------------------------------------------
4637 void manualCircleControler::Configure() //virtual
4639 // this->GetManualContourModel()->SetNumberOfPointsSpline(5);
4642 // ----------------------------------------------------------------------------
4643 void manualCircleControler::MouseClickLeft(int x, int y){
4645 if ( (GetState()==0) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 ) ){
4646 bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4649 if ((GetState()==0) && (GetManualViewBaseContour()->GetPosibleSelected()==true)) {
4650 GetManualViewBaseContour()->InitMove(x,y,z);
4653 int size=GetManualViewBaseContour()->GetNumberOfPoints();
4654 if (GetState()==0) {
4663 // SetPoint(2,x,y,z);
4664 // SetPoint(3,x,y,z);
4666 bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4669 GetManualViewBaseContour()->Refresh();
4671 // ----------------------------------------------------------------------------
4673 void manualCircleControler::MouseMove(int x, int y) // virtual
4677 // this->_vtkInteractorStyleBaseView->
4679 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
4680 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
4683 SetPoint( bakIdPoint , x , y ,z);
4709 GetManualViewBaseContour()->MoveContour(x,y,z);
4711 GetManualViewBaseContour()->Refresh();
4715 // ----------------------------------------------------------------------------
4716 void manualCircleControler::DeleteActualMousePoint(int x, int y) // virtual
4719 // ----------------------------------------------------------------------------
4721 void manualCircleControler::InitRoi(int ww, int hh, double porcentage)
4726 if (GetManualContourModel()->GetSizeLstPoints() ==0)
4731 // AddPoint(0,0,zz);
4732 // AddPoint(0,0,zz);
4735 double pp1=porcentage;
4736 double pp2=1-porcentage;
4738 // mp = GetManualContourModel()->GetManualPoint(2);
4739 // zz=(int)mp->GetZ();
4740 // mp->SetPoint(ww*pp1,hh*pp1,zz);
4742 mp = GetManualContourModel()->GetManualPoint(1);
4744 mp->SetPoint(ww*pp2,hh*pp1,zz);
4746 mp = GetManualContourModel()->GetManualPoint(0);
4748 mp->SetPoint(ww*pp2,hh*pp2,zz);
4750 // mp = GetManualContourModel()->GetManualPoint(3);
4751 // zz=(int)mp->GetZ();
4752 // mp->SetPoint(ww*pp1,hh*pp2,zz);
4754 GetManualViewBaseContour() ->UpdateViewPoint(0);
4755 GetManualViewBaseContour() ->UpdateViewPoint(1);
4756 // GetManualViewBaseContour() ->UpdateViewPoint(2);
4757 // GetManualViewBaseContour() ->UpdateViewPoint(3);
4760 GetManualViewBaseContour()->Refresh();
4763 // ----------------------------------------------------------------------------
4765 void manualCircleControler::SetRoi(int x1, int y1,int x2, int y2)
4768 InitRoi( 0 , 0 , 0.2 );
4769 mp = GetManualContourModel()->GetManualPoint(2);
4773 mp = GetManualContourModel()->GetManualPoint(1);
4777 mp = GetManualContourModel()->GetManualPoint(0);
4781 mp = GetManualContourModel()->GetManualPoint(3);
4785 GetManualViewBaseContour() ->UpdateViewPoint(0);
4786 GetManualViewBaseContour() ->UpdateViewPoint(1);
4787 GetManualViewBaseContour() ->UpdateViewPoint(2);
4788 GetManualViewBaseContour() ->UpdateViewPoint(3);
4793 // ----------------------------------------------------------------------------
4794 // ----------------------------------------------------------------------------
4795 // ----------------------------------------------------------------------------
4799 // _state = 0 // ..nothing..
4800 // _state = 5 // move point
4801 // _state = 6 // move all
4802 // _state = 7 // Empty mouse drag
4804 manualLineControler::manualLineControler()
4807 // ----------------------------------------------------------------------------
4808 manualLineControler::~manualLineControler()
4811 // ----------------------------------------------------------------------------
4812 manualLineControler * manualLineControler :: Clone() // virtual
4814 manualLineControler * clone = new manualLineControler();
4815 CopyAttributesTo(clone);
4819 // ---------------------------------------------------------------------------
4820 void manualLineControler::CopyAttributesTo( manualLineControler * cloneObject)
4823 manualContourBaseControler::CopyAttributesTo(cloneObject);
4826 // ----------------------------------------------------------------------------
4827 void manualLineControler::MouseClickLeft(int x, int y){
4829 if ( (GetState()==0) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)!=-1 ) ){
4830 bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4833 if ((GetState()==0) && (GetManualViewBaseContour()->GetPosibleSelected()==true)) {
4834 GetManualViewBaseContour()->InitMove(x,y,z);
4837 int size=GetManualViewBaseContour()->GetNumberOfPoints();
4838 if (GetState()==0) {
4846 bakIdPoint = GetManualViewBaseContour()->GetIdPoint(x,y,z);
4849 GetManualViewBaseContour()->Refresh();
4851 // ----------------------------------------------------------------------------
4853 void manualLineControler::MouseMove(int x, int y) // virtual
4857 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
4858 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
4862 SetPoint( bakIdPoint , x , y ,z);
4866 GetManualViewBaseContour()->MoveContour(x,y,z);
4868 GetManualViewBaseContour()->Refresh();
4872 // ----------------------------------------------------------------------------
4873 void manualLineControler::DeleteActualMousePoint(int x, int y) // virtual
4876 // ----------------------------------------------------------------------------
4878 void manualLineControler::InitRoi(int ww, int hh, double porcentage)
4883 if (GetManualContourModel()->GetSizeLstPoints() ==0)
4890 double pp1=porcentage;
4891 double pp2=1-porcentage;
4893 mp = GetManualContourModel()->GetManualPoint(0);
4895 mp->SetPoint(ww*pp2,hh*pp2,zz);
4897 mp = GetManualContourModel()->GetManualPoint(1);
4899 mp->SetPoint(ww*pp2,hh*pp1,zz);
4901 GetManualViewBaseContour() ->UpdateViewPoint(0);
4902 GetManualViewBaseContour() ->UpdateViewPoint(1);
4905 GetManualViewBaseContour()->Refresh();
4908 // ----------------------------------------------------------------------------
4909 // ----------------------------------------------------------------------------
4910 // ----------------------------------------------------------------------------
4913 manualContourBaseControler::manualContourBaseControler()
4915 _manViewBaseCont = NULL;
4916 _manContModel = NULL;
4920 _posibleToMove = true;
4923 _keyBoardMoving = false;
4925 // ----------------------------------------------------------------------------
4926 manualContourBaseControler::~manualContourBaseControler()
4930 // ----------------------------------------------------------------------------
4931 manualContourBaseControler * manualContourBaseControler :: Clone() // virtual
4933 manualContourBaseControler * clone = new manualContourBaseControler();
4934 CopyAttributesTo(clone);
4938 // ---------------------------------------------------------------------------
4940 void manualContourBaseControler::CopyAttributesTo( manualContourBaseControler * cloneObject)
4943 InteractorStyleMaracas::CopyAttributesTo(cloneObject);
4944 cloneObject->SetZ( this->GetZ() );
4945 cloneObject->SetState( this->GetState() );
4946 cloneObject->SetEditable( this->IsEditable() );
4947 cloneObject->SetPosibleToMove( this->GetPosibleToMove() );
4948 cloneObject->SetMoving( this->IsMoving() );
4949 cloneObject->SetCompleteCreation( this->GetIfCompleteCreation() );
4950 cloneObject->SetKeyBoardMoving( this->GetKeyBoardMoving() );
4953 // ----------------------------------------------------------------------------
4954 void manualContourBaseControler::Configure() //virtual
4958 // ----------------------------------------------------------------------------
4959 bool manualContourBaseControler::OnChar()
4961 if ( _vtkInteractorStyleBaseView!=NULL )
4963 char keyCode = _vtkInteractorStyleBaseView->GetInteractor()-> GetKeyCode();
4966 wxVTKRenderWindowInteractor *_wxVTKiren;
4967 _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
4968 _wxVTKiren->GetEventPosition(X, Y);
4969 //int Z = GetZ(); // JPRx
4971 if ((keyCode==8) || (keyCode==127))
4974 if (!GetManualViewBaseContour()->GetPosibleSelected()==true)
4976 DeleteActualMousePoint(X,Y);
4978 GetManualViewBaseContour()->Refresh();
4979 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
4987 GetManualViewBaseContour()->Refresh();
4988 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
4990 else if( !IsEditable() )
4992 if ( keyCode == 'L' )
4994 GetManualViewBaseContour()->MoveContour( -1, 0 );
4995 SetKeyBoardMoving( true );
4997 else if ( keyCode == 'R' )
4999 GetManualViewBaseContour()->MoveContour( 1, 0 );
5000 SetKeyBoardMoving( true );
5002 else if ( keyCode == 'U' )
5004 GetManualViewBaseContour()->MoveContour( 0, -1 );
5005 SetKeyBoardMoving( true );
5007 else if ( keyCode == 'D' )
5009 GetManualViewBaseContour()->MoveContour( 0, 1 );
5010 SetKeyBoardMoving( true );
5012 else if ( keyCode == 'W' )//Diagonal left down
5014 GetManualViewBaseContour()->MoveContour( -1, 1 );
5015 SetKeyBoardMoving( true );
5017 else if ( keyCode == 'Q' )//Diagonal left up
5019 GetManualViewBaseContour()->MoveContour( -1, -1 );
5020 SetKeyBoardMoving( true );
5022 else if( keyCode == 'P' )//Diagonal right up
5024 GetManualViewBaseContour()->MoveContour( 1, -1 );
5025 SetKeyBoardMoving( true );
5027 else if( keyCode == 'M' )//Diagonal right down
5029 GetManualViewBaseContour()->MoveContour( 1, 1 );
5030 SetKeyBoardMoving( true );
5032 if( GetKeyBoardMoving() )
5034 GetManualViewBaseContour()->Refresh();
5035 this->_vtkInteractorStyleBaseView->SetRefresh_waiting();
5042 // ----------------------------------------------------------------------------
5043 bool manualContourBaseControler::OnMouseMove()
5045 if ( _vtkInteractorStyleBaseView!=NULL)
5048 wxVTKRenderWindowInteractor *_wxVTKiren;
5049 _wxVTKiren= _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
5050 _wxVTKiren->GetEventPosition( X , Y );
5053 if ( (_vtkInteractorStyleBaseView->GetInteractor()->GetControlKey()==0) &&
5054 (_vtkInteractorStyleBaseView->GetInteractor()->GetShiftKey()==0) ) {
5060 // ----------------------------------------------------------------------------
5061 bool manualContourBaseControler::OnLeftButtonDown()
5063 SetKeyBoardMoving( false );
5064 if ( _vtkInteractorStyleBaseView!=NULL )
5067 wxVTKRenderWindowInteractor *wxVTKiren;
5068 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
5069 wxVTKiren->GetEventPosition(X,Y);
5071 MouseClickLeft(X,Y);
5075 // ----------------------------------------------------------------------------
5076 bool manualContourBaseControler::OnLeftButtonUp()
5078 if ( _vtkInteractorStyleBaseView!=NULL )
5081 wxVTKRenderWindowInteractor *wxVTKiren;
5082 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
5083 wxVTKiren->GetEventPosition(X,Y);
5084 MouseReleaseLeft(X,Y);
5088 // ----------------------------------------------------------------------------
5089 bool manualContourBaseControler::OnLeftDClick()
5091 if ( _vtkInteractorStyleBaseView!=NULL )
5094 wxVTKRenderWindowInteractor *wxVTKiren;
5095 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
5096 wxVTKiren->GetEventPosition(X,Y);
5098 this->MouseDLeft(X,Y);
5102 // ----------------------------------------------------------------------------
5103 bool manualContourBaseControler::OnMiddleButtonDown()
5105 // SetKeyBoardMoving( false );
5106 if ( _vtkInteractorStyleBaseView!=NULL )
5109 wxVTKRenderWindowInteractor *wxVTKiren;
5110 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
5111 wxVTKiren->GetEventPosition(X,Y);
5112 GetManualViewBaseContour()->InitMove( X, Y,GetZ());
5116 // ----------------------------------------------------------------------------
5117 bool manualContourBaseControler::OnMiddleButtonUp()
5121 // ----------------------------------------------------------------------------
5122 bool manualContourBaseControler::OnRightButtonDown()
5124 if( _vtkInteractorStyleBaseView!= NULL )
5127 wxVTKRenderWindowInteractor *wxVTKiren;
5128 wxVTKiren = _vtkInteractorStyleBaseView->GetWxVtk2DBaseView()->GetWxVTKRenderWindowInteractor();
5129 wxVTKiren->GetEventPosition(X, Y);
5131 SetCompleteCreation( true );
5132 SetKeyBoardMoving( false );
5133 MouseClickRight(X,Y);
5137 // ----------------------------------------------------------------------------
5138 bool manualContourBaseControler::OnRightButtonUp()
5142 // ----------------------------------------------------------------------------
5143 void manualContourBaseControler::SetModelView(manualContourModel *manContModel, manualViewBaseContour *manViewBaseCont){
5144 _manContModel = manContModel;
5145 _manViewBaseCont = manViewBaseCont;
5146 _manViewBaseCont->SetEditable( &_editable );
5148 // ----------------------------------------------------------------------------
5149 manualContourModel* manualContourBaseControler::GetManualContourModel()
5151 return _manContModel;
5153 // ----------------------------------------------------------------------------
5154 manualViewBaseContour* manualContourBaseControler::GetManualViewBaseContour()
5156 return _manViewBaseCont;
5158 // ----------------------------------------------------------------------------
5159 void manualContourBaseControler::MouseClickLeft(int x, int y) // virtual
5163 // ----------------------------------------------------------------------------
5164 void manualContourBaseControler::MouseClickRight(int x, int y)
5170 SetEditable( false );
5171 SetPosibleToMove( false );
5175 // ----------------------------------------------------------------------------
5176 void manualContourBaseControler::MouseReleaseLeft(int x, int y)
5178 if (_state==5){ _state = 0; }
5179 if (_state==6){ _state = 0; }
5180 if (_state==7){ _state = 0; }
5182 GetManualViewBaseContour()->SelectPosibleContour(x,y,GetZ());
5183 if( GetIfCompleteCreation() && IsEditable() && !GetManualViewBaseContour()->GetPosibleSelected() && (GetManualViewBaseContour()->GetIdPoint(x,y,GetZ())==-1) )
5185 SetEditable( false );
5186 SetPosibleToMove( false );
5189 // ----------------------------------------------------------------------------
5190 void manualContourBaseControler::MouseDLeft(int x, int y )
5195 GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
5196 GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
5197 if ( GetManualViewBaseContour()->GetPosibleSelected() )
5203 // ----------------------------------------------------------------------------
5204 void manualContourBaseControler::MouseMove(int x, int y) // virtual
5207 // ----------------------------------------------------------------------------
5208 void manualContourBaseControler::SetState(int state)
5212 // ----------------------------------------------------------------------------
5213 int manualContourBaseControler::GetState()
5217 // ----------------------------------------------------------------------------
5218 bool manualContourBaseControler::IsEditable( )
5222 // ----------------------------------------------------------------------------
5223 void manualContourBaseControler::SetEditable( bool condition )
5225 if (GetManualViewBaseContour()!=NULL) {
5228 GetManualViewBaseContour()->RemoveControlPoints();
5230 GetManualViewBaseContour()->SetSelected( condition );
5232 _editable = condition;
5235 // ----------------------------------------------------------------------------
5236 bool manualContourBaseControler::GetPosibleToMove()
5238 return _posibleToMove;
5240 // ----------------------------------------------------------------------------
5241 void manualContourBaseControler::SetPosibleToMove( bool condition )
5243 _posibleToMove = condition;
5245 // ----------------------------------------------------------------------------
5246 bool manualContourBaseControler::IsMoving()
5250 // ----------------------------------------------------------------------------
5251 void manualContourBaseControler::SetMoving( bool condition )
5253 _moving = condition;
5255 // ----------------------------------------------------------------------------
5256 void manualContourBaseControler::SetCompleteCreation( bool condition )
5258 _created = condition;
5260 // ----------------------------------------------------------------------------
5261 bool manualContourBaseControler::GetIfCompleteCreation ( )
5265 // ----------------------------------------------------------------------------
5266 void manualContourBaseControler::SetKeyBoardMoving( bool condition )
5268 _keyBoardMoving = condition;
5270 // ----------------------------------------------------------------------------
5271 bool manualContourBaseControler::GetKeyBoardMoving( )
5273 return _keyBoardMoving;
5275 // ----------------------------------------------------------------------------
5276 void manualContourBaseControler::CreateNewManualContour(){
5277 _manViewBaseCont->CreateNewContour();
5279 // ----------------------------------------------------------------------------
5280 int manualContourBaseControler::GetNumberOfPointsManualContour(){
5281 return _manViewBaseCont->GetNumberOfPoints();
5283 // ----------------------------------------------------------------------------
5285 //JSTG - 25-02-08 -------------------------------------------------------------
5286 int manualContourBaseControler::GetNumberOfPointsSplineManualContour(){
5287 //return _manViewBaseCont->GetNumberOfPointsSpline();
5288 return _manContModel->GetNumberOfPointsSpline();
5290 // ----------------------------------------------------------------------------
5292 double* manualContourBaseControler::GetVectorPointsXManualContour(){
5293 return _manViewBaseCont->GetVectorPointsXManualContour();
5295 // ----------------------------------------------------------------------------
5296 double* manualContourBaseControler::GetVectorPointsYManualContour(){
5297 return _manViewBaseCont->GetVectorPointsYManualContour();
5299 // ----------------------------------------------------------------------------
5300 void manualContourBaseControler::DeleteContour(){
5301 _manViewBaseCont->DeleteContour();
5302 _manContModel->DeleteAllPoints();
5304 // ----------------------------------------------------------------------------
5305 void manualContourBaseControler::DeleteActualMousePoint(int x, int y)// virtual
5307 if ((_manContModel!=NULL) && (_manViewBaseCont!=NULL) )
5309 int id=_manViewBaseCont->GetIdPoint(x,y,GetZ());
5310 if ((id!=-1) && (_manContModel->GetSizeLstPoints()>2) ){
5311 _manContModel->DeletePoint(id);
5312 _manViewBaseCont->DeletePoint(id);
5318 // ----------------------------------------------------------------------------
5319 void manualContourBaseControler::Magnet(int x, int y)
5323 /*int id= */ _manViewBaseCont->GetIdPoint(x,y,GetZ()); // JPRx
5324 if (GetManualContourModel()!=NULL){
5328 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz);
5329 int id = GetManualContourModel()->GetIdPoint(xx,yy,zz,32000,-1);
5332 manualPoint *mp = GetManualContourModel()->GetManualPoint(id);
5333 mp->SetPoint(xx,yy,zz);
5335 // GetManualViewBaseContour()->UpdateViewPoint(id);
5341 // ----------------------------------------------------------------------------
5342 void manualContourBaseControler::SetZ(int z)
5346 // ----------------------------------------------------------------------------
5347 int manualContourBaseControler::GetZ()
5351 // ----------------------------------------------------------------------------
5352 void manualContourBaseControler::AddPoint(int x, int y, int z) // virtual
5354 if (GetManualContourModel()!=NULL){
5358 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz);
5359 /*int id =*/ GetManualContourModel()->AddPoint(xx,yy,zz); // JPRx
5360 GetManualViewBaseContour()->AddPoint();
5361 // GetManualViewBaseContour()->UpdateViewPoint(id);
5364 // ----------------------------------------------------------------------------
5365 void manualContourBaseControler::InsertPoint(int x,int y,int z) // virtual
5369 if (GetManualContourModel()!=NULL){
5373 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz);
5374 if (GetManualContourModel()->GetSizeLstPoints()>1){
5375 id = GetManualContourModel()->InsertPoint(xx,yy,zz);
5376 GetManualViewBaseContour()->InsertPoint(id);
5377 // GetManualViewBaseContour()->UpdateViewPoint(id);
5379 GetManualContourModel()->AddPoint(xx,yy,zz);
5380 GetManualViewBaseContour()->AddPoint();
5382 // GetManualViewBaseContour()->UpdateViewPoint(id);
5387 // ----------------------------------------------------------------------------
5388 void manualContourBaseControler::SetPoint( int id ,int x , int y , int z){ // virtual
5389 if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
5393 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz);
5394 manualPoint *mp = _manContModel->GetManualPoint(id);
5395 mp->SetPoint(xx,yy,zz);
5396 GetManualViewBaseContour()->UpdateViewPoint(id);
5399 // ----------------------------------------------------------------------------
5400 void manualContourBaseControler::SetPointX( int id ,int x ){
5401 if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
5405 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz);
5406 manualPoint *mp = _manContModel->GetManualPoint(id);
5408 GetManualViewBaseContour()->UpdateViewPoint(id);
5411 // ----------------------------------------------------------------------------
5412 void manualContourBaseControler::SetPointY( int id ,int y ){
5413 if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
5417 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz);
5418 manualPoint *mp = _manContModel->GetManualPoint(id);
5420 GetManualViewBaseContour()->UpdateViewPoint(id);
5423 // ----------------------------------------------------------------------------
5424 void manualContourBaseControler::SetPointZ( int id ,int z ){
5425 if ((GetManualViewBaseContour()!=NULL) && (id>=0)){
5429 GetManualViewBaseContour()->TransfromeCoordViewWorld(xx,yy,zz);
5430 manualPoint *mp = _manContModel->GetManualPoint(id);
5432 GetManualViewBaseContour()->UpdateViewPoint(id);
5435 // ----------------------------------------------------------------------------
5436 void manualContourBaseControler::ResetContour() // virtual
5438 this->DeleteContour();
5439 GetManualViewBaseContour()->CreateNewContour();