if( IsEditable() )
{
+ // Insert Point with shift + click
if ( (_vtkInteractorStyleBaseView!=NULL) && (GetState()==0) && ( (vtkrenderwindowinteractor!=NULL) && (vtkrenderwindowinteractor->GetShiftKey()==1) ) && (GetManualViewBaseContour()->GetPosibleSelected()==false) && (GetManualViewBaseContour()->GetIdPoint(x,y,z)==-1) )
{
ok=true;
{
ok=true;
SetState(1);
- GetManualContourModel()->SetCloseContour(false);
+ GetManualContourModel()->SetCloseContour(true);
AddPoint(x,y,z);
}
// Continue to Insert Control Points with ClickLeft (After being empty the contour)
if ((GetState()==1) && (_easyCreation==true) )
{
- ok=true;
- AddPoint(x,y,z);
- _bakIdPoint=GetNumberOfPointsManualContour() - 1;
+ ok=true;
+ AddPoint(x,y,z);
+ _bakIdPoint=GetNumberOfPointsManualContour() - 1;
}
// Insert Control Points IF Contour is Selected
for( id=0; id<size; id++)
{
UpdateViewPoint( id );
- }
+ } // for id
}
// ----------------------------------------------------------------------------
manualViewPoint *mvp = new manualViewPoint( this->GetWxVtkBaseView() );
AddPoint( mvp );
}
+
// ----------------------------------------------------------------------------
void manualViewBaseContour::AddPoint( manualViewPoint * manualViewPoint )
{
_lstViewPoints.push_back( manualViewPoint );
-
// EED 3 oct 2006
manualViewPoint->SetSpacing(_spc);
-
vtkActor *actor = manualViewPoint->CreateVtkPointActor();
_wxvtkbaseview->GetRenderer()->AddActor( actor );
}
void manualViewBaseContour::InsertPoint(int id)
{
manualViewPoint *mvp = new manualViewPoint( this->GetWxVtkBaseView() );
-
// EED 3 oct 2006
mvp->SetSpacing(_spc);
-
std::vector<manualViewPoint*>::iterator itNum = _lstViewPoints.begin() + id;
_lstViewPoints.insert(itNum,mvp);
_wxvtkbaseview->GetRenderer()->AddActor( mvp->CreateVtkPointActor() );
}*/
DeleteVtkObjects();
int i,size=_lstViewPoints.size();
- for (i=0;i<size;i++){
+ for (i=0;i<size;i++)
+ {
manualViewBaseContour::DeletePoint(0);
- }
+ } // for i
Refresh();
}