Point 6: XAXIS_COEF, YAXIS_COEF, ZAXIS_COEF, XAXIS_MAX, YAXIS_MAX, ZAXIS_MAX, XAXIS_MIN, YAXIS_MIN, ZAXIS_MIN.
Repaint();
}
+/*!
+ Set fit data
+*/
+void Plot3d_ViewWindow::SetFitData( const bool theIsEnabled,
+ const double theBounds[6] )
+{
+ myIsFitDataInitialized = myIsFitDataEnabled = theIsEnabled;
+ for( int i = 0; i < 6; i++ )
+ myFitDataBounds[i] = theBounds[i];
+}
+
/*!
Apply fit data bounds to all displayed actors
*/
vtkSmartPointer<vtkScalarBarActor> GetScalarBarActor() const;
void UpdateScalarBar( const bool theIsRepaint = true );
+ void SetFitData( const bool theIsEnabled,
+ const double theBounds[6] );
void UpdateFitData( const bool theIsRepaint = true );
void NormalizeSurfaces( const bool theIsRepaint = true );