mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-05 12:28:26 +05:00
0020569: EDF 1158 SMESH: Bad interpretation of analytical density function in 1D distribution hypothesis
This commit is contained in:
parent
e811a79496
commit
4d5accf2df
@ -50,6 +50,8 @@
|
|||||||
# include <algorithm>
|
# include <algorithm>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <Basics_Utils.hxx>
|
||||||
|
|
||||||
StdMeshersGUI_DistrPreview::StdMeshersGUI_DistrPreview( QWidget* p, StdMeshers::StdMeshers_NumberOfSegments_ptr h )
|
StdMeshersGUI_DistrPreview::StdMeshersGUI_DistrPreview( QWidget* p, StdMeshers::StdMeshers_NumberOfSegments_ptr h )
|
||||||
: QwtPlot( p ),
|
: QwtPlot( p ),
|
||||||
myPoints( 50 ),
|
myPoints( 50 ),
|
||||||
@ -60,6 +62,7 @@ StdMeshersGUI_DistrPreview::StdMeshersGUI_DistrPreview( QWidget* p, StdMeshers::
|
|||||||
myIsDone( true ),
|
myIsDone( true ),
|
||||||
myNbSeg( 1 )
|
myNbSeg( 1 )
|
||||||
{
|
{
|
||||||
|
Kernel_Utils::Localizer loc;
|
||||||
myHypo = StdMeshers::StdMeshers_NumberOfSegments::_duplicate( h );
|
myHypo = StdMeshers::StdMeshers_NumberOfSegments::_duplicate( h );
|
||||||
myVars.ChangeValue( 1 ) = new Expr_NamedUnknown( "t" );
|
myVars.ChangeValue( 1 ) = new Expr_NamedUnknown( "t" );
|
||||||
myDensity = new QwtPlotCurve( QString() );
|
myDensity = new QwtPlotCurve( QString() );
|
||||||
@ -200,6 +203,7 @@ bool StdMeshersGUI_DistrPreview::createTable( SMESH::double_array& func )
|
|||||||
|
|
||||||
void StdMeshersGUI_DistrPreview::update()
|
void StdMeshersGUI_DistrPreview::update()
|
||||||
{
|
{
|
||||||
|
Kernel_Utils::Localizer loc;
|
||||||
SMESH::double_array graph, distr;
|
SMESH::double_array graph, distr;
|
||||||
if( isTableFunc() )
|
if( isTableFunc() )
|
||||||
{
|
{
|
||||||
@ -343,6 +347,7 @@ bool isCorrectArg( const Handle( Expr_GeneralExpression )& expr )
|
|||||||
|
|
||||||
bool StdMeshersGUI_DistrPreview::init( const QString& str )
|
bool StdMeshersGUI_DistrPreview::init( const QString& str )
|
||||||
{
|
{
|
||||||
|
Kernel_Utils::Localizer loc;
|
||||||
bool parsed_ok = true;
|
bool parsed_ok = true;
|
||||||
try {
|
try {
|
||||||
#ifdef NO_CAS_CATCH
|
#ifdef NO_CAS_CATCH
|
||||||
|
Loading…
x
Reference in New Issue
Block a user