GetManualViewBaseContour()->SelectPosiblePoint(x,y,z);
}
GetManualViewBaseContour()->SelectPosibleContour(x,y,z);
- if (GetState()==1){ SetPoint( _bakIdPoint , x , y ,z); }
+ if (GetState()==1)
+ {
+ SetPoint( _bakIdPoint , x , y ,z);
+ GetManualViewBaseContour()->AutomaticOpenCloseContour();
+ }
if (GetState()==5){ SetPoint( _bakIdPoint , x , y ,z); }
if (GetState()==9){ GetManualViewBaseContour()->SetNewPositionGroupSelectedPoints( x,y,z ); }
if ( GetState()==6 && !IsEditable() && GetPosibleToMove() &&IsMoving() )
}
//-------------------------------------------------------------------
-int manualViewBaseContour::GetNumberOfPointsGroupSelectedPoints()
+int manualViewBaseContour::GetNumberOfPointsGroupSelectedPoints() // virtual
+{
+}
+
+void manualViewBaseContour::AutomaticOpenCloseContour() // virtual
{
}
virtual void InitGroupSelectionPointsToBeMove(int id);
virtual void SetNewPositionGroupSelectedPoints( int x , int y ,int z);
virtual int GetNumberOfPointsGroupSelectedPoints();
-
+ virtual void AutomaticOpenCloseContour();
+
//---------------------------------------------------
// PRIVATE METHODS & ATTS
//---------------------------------------------------
UpdateViewPoint(id);
} // for i
}
+
+void manualViewContour::AutomaticOpenCloseContour()
+{
+ int i, manualPointsSZ = _manContModel->GetSizeLstPoints();
+ if (manualPointsSZ>=3){
+ double minX,minY,minZ;
+ double maxX,maxY,maxZ;
+ double cX,cY,cZ;
+ manualPoint *mp;
+ double v1X,v1Y,v1Z;
+ double v2X,v2Y,v2Z;
+ double ang;
+ for ( i=0; i<manualPointsSZ; i++ )
+ {
+ mp = _manContModel->GetManualPoint( i );
+ if (i==0)
+ {
+ minX = mp->GetX();
+ maxX = mp->GetX();
+ minY = mp->GetY();
+ maxY = mp->GetY();
+ minZ = mp->GetZ();
+ maxZ = mp->GetZ();
+ }
+ if (minX>mp->GetX()) { minX=mp->GetX(); }
+ if (maxX<mp->GetX()) { maxX=mp->GetX(); }
+ if (minY>mp->GetY()) { minY=mp->GetY(); }
+ if (maxY<mp->GetY()) { maxY=mp->GetY(); }
+ if (minZ>mp->GetZ()) { minZ=mp->GetZ(); }
+ if (maxZ<mp->GetZ()) { maxZ=mp->GetZ(); }
+ } // for
+ cX = (minX+maxX)/2;
+ cY = (minY+maxY)/2;
+ cZ = (minZ+maxZ)/2;
+ mp=_manContModel->GetManualPoint(0);
+ v1X=mp->GetX() - cX;
+ v1Y=mp->GetY() - cY;
+ v1Z=mp->GetZ() - cZ;
+ mp=_manContModel->GetManualPoint( manualPointsSZ-1 );
+ v2X=mp->GetX() - cX;
+ v2Y=mp->GetY() - cY;
+ v2Z=mp->GetZ() - cZ;
+ ang = abs( atan2(v1Y,v1X) - atan2(v2Y,v2X) );
+ if (ang<0.785398) // PI/4 45 degre
+ {
+ _manContModel->SetCloseContour(true);
+ }else{ // if 45 degre
+ _manContModel->SetCloseContour(false);
+ }
+ } // if manualPointsSZ >=3
+
+}
virtual void InitGroupSelectionPointsToBeMove(int id);
virtual void SetNewPositionGroupSelectedPoints( int x , int y ,int z);
virtual int GetNumberOfPointsGroupSelectedPoints();
-
+ virtual void AutomaticOpenCloseContour();
+
private:
std::vector< std::vector<double> > _initialMovingPoints;
manualContourModel *_initialConoturModel;
double _maxX;
double _maxY;
double _maxZ;
-
//2024-10-25
std::vector<double> lstPointsGroupSelectedToMoveId;
std::vector<double> lstPointsGroupSelectedToMoveX;