]> SALOME platform Git repositories - modules/hydro.git/commitdiff
Salome HOME
patch for bug of not-selectable bathymetry
authorasl <asl@opencascade.com>
Wed, 13 Sep 2017 06:39:59 +0000 (09:39 +0300)
committerasl <asl@opencascade.com>
Tue, 19 Sep 2017 10:45:19 +0000 (13:45 +0300)
src/HYDROGUI/HYDROGUI_BathymetryPrs.cxx
src/HYDROGUI/HYDROGUI_BathymetryPrs.h

index 2bcc235db51e1122cf10b639a2c62d34b3c66ed7..e6e427b44aad5f8f438b55adf586c5c8699466f3 100644 (file)
 #include <Select3D_SensitiveBox.hxx>
 #include <Graphic3d_Group.hxx>
 #include <Graphic3d_ArrayOfPolylines.hxx>
+#include <Graphic3d_ArrayOfPoints.hxx>
 
 const int BATH_HIGHLIGHT_MODE = 10;
 
 HYDROGUI_BathymetryPrs::HYDROGUI_BathymetryPrs()
 {
   SetHilightMode( BATH_HIGHLIGHT_MODE );
+  SetAutoHilight( Standard_True );
 }
 
 HYDROGUI_BathymetryPrs::~HYDROGUI_BathymetryPrs()
 {
 }
 
-void HYDROGUI_BathymetryPrs::SetPoints( const Handle(TColgp_HArray1OfPnt)&     theCoords,
-                                        const Handle(Quantity_HArray1OfColor)& theColors )
+void HYDROGUI_BathymetryPrs::UpdateBound()
 {
+  Handle(Graphic3d_ArrayOfPoints) points = GetPoints();
   myBound.SetVoid();
-  if( !theCoords.IsNull() )
+  if( !points.IsNull() )
   {
-    int aLower = theCoords->Lower();
-    int anUpper = theCoords->Upper();
+    int aLower = 1;
+    int anUpper = points->VertexNumber();
 
     for( int i = aLower; i <= anUpper; i++ )
     {
+      gp_Pnt p = points->Vertice( i );
       if( i==aLower )
-        myBound.Set( theCoords->Value( i ) );
+        myBound.Set( p );
       else
-      {
-        gp_Pnt aPnt = theCoords->Value( i );
-        myBound.Update( aPnt.X(), aPnt.Y(), aPnt.Z() );
-      }
+        myBound.Update( p.X(), p.Y(), p.Z() );
     }
   }
+}
+
+void HYDROGUI_BathymetryPrs::SetPoints( const Handle(TColgp_HArray1OfPnt)&     theCoords,
+                                        const Handle(Quantity_HArray1OfColor)& theColors )
+{
   AIS_PointCloud::SetPoints( theCoords, theColors );
+  UpdateBound();
 }
 
 void HYDROGUI_BathymetryPrs::Compute( const Handle(PrsMgr_PresentationManager3d)& thePresentationManager,
@@ -67,6 +73,9 @@ void HYDROGUI_BathymetryPrs::Compute( const Handle(PrsMgr_PresentationManager3d)
   if( theMode==BATH_HIGHLIGHT_MODE )
   {
     thePresentation->Clear();
+    if( myBound.IsVoid() )
+      UpdateBound();
+
     if( myBound.IsVoid() || 
         myBound.IsOpenXmin() || myBound.IsOpenXmax() ||
         myBound.IsOpenYmin() || myBound.IsOpenYmax() ||
@@ -117,6 +126,9 @@ void HYDROGUI_BathymetryPrs::ComputeSelection( const Handle(SelectMgr_Selection)
 {
   if( theMode == 0 )
   {
+    if( myBound.IsVoid() )
+      UpdateBound();
+
     if( myBound.IsVoid() || 
         myBound.IsOpenXmin() || myBound.IsOpenXmax() ||
         myBound.IsOpenYmin() || myBound.IsOpenYmax() ||
index da9396d8a3c071516c8236e957d1b5259a4c4eb4..4f0124fc51727a9fafc5c6c9441d3e01e14f5a68 100644 (file)
@@ -38,6 +38,8 @@ protected:
   virtual void ComputeSelection( const Handle(SelectMgr_Selection)& theSelection,
                                  const Standard_Integer theMode );
 
+  void UpdateBound();
+
 private:
   Bnd_Box myBound;
 };