mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-28 18:30:36 +05:00
IMP 0016656: EDF531: Default constructor in creation dialog of geometric objects.
This commit is contained in:
parent
f3d19bfb62
commit
a0e96fa432
Binary file not shown.
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 24 KiB |
Binary file not shown.
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 25 KiB |
@ -15,6 +15,10 @@ Radius)</em>
|
|||||||
\n <b>Arguments:</b> Name + 1 vertex (for the center) + 1 edge (for
|
\n <b>Arguments:</b> Name + 1 vertex (for the center) + 1 edge (for
|
||||||
the direction) + Radius.
|
the direction) + Radius.
|
||||||
|
|
||||||
|
\note Passing None as <b>Center Point</b> means Origin of global
|
||||||
|
coordinate system, passing None as \b Vector means OZ axis of global
|
||||||
|
coordinate system.
|
||||||
|
|
||||||
\image html circle1.png
|
\image html circle1.png
|
||||||
|
|
||||||
\n Secondly, you can define a \b Circle by three \b Points that lie on it.
|
\n Secondly, you can define a \b Circle by three \b Points that lie on it.
|
||||||
|
@ -12,6 +12,10 @@ Vector giving its normal, and its <b>Major & Minor Radiuses</b>.
|
|||||||
\n <b>Arguments:</b> Name + 1 vertex (for the center) + 1 edge (for
|
\n <b>Arguments:</b> Name + 1 vertex (for the center) + 1 edge (for
|
||||||
the direction) + 1 X Radius + 1 Y Radius.
|
the direction) + 1 X Radius + 1 Y Radius.
|
||||||
|
|
||||||
|
\note Passing None as <b>Center Point</b> means Origin of global
|
||||||
|
coordinate system, passing None as \b Vector means OZ axis of global
|
||||||
|
coordinate system.
|
||||||
|
|
||||||
\image html ellipse.png
|
\image html ellipse.png
|
||||||
|
|
||||||
<b>Example:</b>
|
<b>Example:</b>
|
||||||
@ -21,4 +25,4 @@ the direction) + 1 X Radius + 1 Y Radius.
|
|||||||
Our <b>TUI Scripts</b> provide you with useful examples of creation of
|
Our <b>TUI Scripts</b> provide you with useful examples of creation of
|
||||||
\ref tui_creation_ellipse "Basic Geometric Objects".
|
\ref tui_creation_ellipse "Basic Geometric Objects".
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
@ -69,8 +69,8 @@ BasicGUI_CircleDlg::BasicGUI_CircleDlg( GeometryGUI* theGeometryGUI, QWidget* pa
|
|||||||
GroupPntVecR = new DlgRef_2Sel1Spin( centralWidget() );
|
GroupPntVecR = new DlgRef_2Sel1Spin( centralWidget() );
|
||||||
GroupPntVecR->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
|
GroupPntVecR->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
|
||||||
|
|
||||||
GroupPntVecR->TextLabel1->setText( tr( "GEOM_CENTER_POINT" ) );
|
GroupPntVecR->TextLabel1->setText( tr( "GEOM_CENTER_POINT" ) + " (Origin by default)" );
|
||||||
GroupPntVecR->TextLabel2->setText( tr( "GEOM_VECTOR" ) );
|
GroupPntVecR->TextLabel2->setText( tr( "GEOM_VECTOR" ) + " (Z axis by default)" );
|
||||||
GroupPntVecR->TextLabel3->setText( tr( "GEOM_RADIUS" ) );
|
GroupPntVecR->TextLabel3->setText( tr( "GEOM_RADIUS" ) );
|
||||||
GroupPntVecR->PushButton1->setIcon( image1 );
|
GroupPntVecR->PushButton1->setIcon( image1 );
|
||||||
GroupPntVecR->PushButton2->setIcon( image1 );
|
GroupPntVecR->PushButton2->setIcon( image1 );
|
||||||
@ -248,6 +248,8 @@ void BasicGUI_CircleDlg::ConstructorsClicked( int constructorId )
|
|||||||
|
|
||||||
connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged() ),
|
connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged() ),
|
||||||
this, SLOT( SelectionIntoArgument() ) );
|
this, SLOT( SelectionIntoArgument() ) );
|
||||||
|
|
||||||
|
displayPreview();
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
@ -494,12 +496,15 @@ bool BasicGUI_CircleDlg::isValid( QString& msg )
|
|||||||
{
|
{
|
||||||
const int id = getConstructorId();
|
const int id = getConstructorId();
|
||||||
if ( id == 0 )
|
if ( id == 0 )
|
||||||
return !myPoint->_is_nil() && !myDir->_is_nil() && getRadius() > 0;
|
//return !myPoint->_is_nil() && !myDir->_is_nil() && getRadius() > 0;
|
||||||
|
//nil point means origin of global CS
|
||||||
|
//nil vector means Z axis
|
||||||
|
return getRadius() > 0;
|
||||||
else if ( id == 1 )
|
else if ( id == 1 )
|
||||||
return !myPoint1->_is_nil() && !myPoint2->_is_nil() && !myPoint3->_is_nil() &&
|
return !myPoint1->_is_nil() && !myPoint2->_is_nil() && !myPoint3->_is_nil() &&
|
||||||
!isEqual( myPoint1, myPoint2 ) && !isEqual( myPoint1, myPoint3 ) && !isEqual( myPoint2, myPoint3 );
|
!isEqual( myPoint1, myPoint2 ) && !isEqual( myPoint1, myPoint3 ) && !isEqual( myPoint2, myPoint3 );
|
||||||
else if ( id == 2 )
|
else if ( id == 2 )
|
||||||
return !myPoint4->_is_nil() && !myPoint5->_is_nil() && !myPoint6->_is_nil() &&
|
return !myPoint4->_is_nil() && !myPoint5->_is_nil() && !myPoint6->_is_nil() &&
|
||||||
!isEqual( myPoint4, myPoint5 ) && !isEqual( myPoint5, myPoint6 ) && !isEqual( myPoint4, myPoint6 );
|
!isEqual( myPoint4, myPoint5 ) && !isEqual( myPoint5, myPoint6 ) && !isEqual( myPoint4, myPoint6 );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -548,8 +553,10 @@ void BasicGUI_CircleDlg::addSubshapesToStudy()
|
|||||||
|
|
||||||
switch ( getConstructorId() ) {
|
switch ( getConstructorId() ) {
|
||||||
case 0:
|
case 0:
|
||||||
objMap[GroupPntVecR->LineEdit1->text()] = myPoint;
|
if (!CORBA::is_nil(myPoint))
|
||||||
objMap[GroupPntVecR->LineEdit2->text()] = myDir;
|
objMap[GroupPntVecR->LineEdit1->text()] = myPoint;
|
||||||
|
if (!CORBA::is_nil(myDir))
|
||||||
|
objMap[GroupPntVecR->LineEdit2->text()] = myDir;
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
objMap[Group3Pnts->LineEdit1->text()] = myPoint1;
|
objMap[Group3Pnts->LineEdit1->text()] = myPoint1;
|
||||||
|
@ -69,8 +69,8 @@ BasicGUI_EllipseDlg::BasicGUI_EllipseDlg( GeometryGUI* theGeometryGUI, QWidget*
|
|||||||
|
|
||||||
GroupPoints = new DlgRef_2Sel2Spin( centralWidget() );
|
GroupPoints = new DlgRef_2Sel2Spin( centralWidget() );
|
||||||
GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
|
GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) );
|
||||||
GroupPoints->TextLabel1->setText( tr( "GEOM_CENTER" ) );
|
GroupPoints->TextLabel1->setText( tr( "GEOM_CENTER" ) + " (Origin by default)" );
|
||||||
GroupPoints->TextLabel2->setText( tr( "GEOM_VECTOR" ) );
|
GroupPoints->TextLabel2->setText( tr( "GEOM_VECTOR" ) + " (Z axis by default)" );
|
||||||
GroupPoints->TextLabel3->setText( tr( "GEOM_RADIUS_MAJOR" ) );
|
GroupPoints->TextLabel3->setText( tr( "GEOM_RADIUS_MAJOR" ) );
|
||||||
GroupPoints->TextLabel4->setText( tr( "GEOM_RADIUS_MINOR" ) );
|
GroupPoints->TextLabel4->setText( tr( "GEOM_RADIUS_MINOR" ) );
|
||||||
GroupPoints->PushButton1->setIcon( image1 );
|
GroupPoints->PushButton1->setIcon( image1 );
|
||||||
@ -146,6 +146,8 @@ void BasicGUI_EllipseDlg::Init()
|
|||||||
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
||||||
|
|
||||||
initName( tr( "GEOM_ELLIPSE" ) );
|
initName( tr( "GEOM_ELLIPSE" ) );
|
||||||
|
|
||||||
|
displayPreview();
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
@ -189,6 +191,7 @@ bool BasicGUI_EllipseDlg::ClickOnApply()
|
|||||||
//globalSelection(GEOM_POINT);
|
//globalSelection(GEOM_POINT);
|
||||||
globalSelection(); // close local contexts, if any
|
globalSelection(); // close local contexts, if any
|
||||||
localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
|
localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
|
||||||
|
displayPreview();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -368,7 +371,10 @@ bool BasicGUI_EllipseDlg::isValid( QString& msg )
|
|||||||
msg = tr( "GEOM_ELLIPSE_ERROR_1" );
|
msg = tr( "GEOM_ELLIPSE_ERROR_1" );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return !myPoint->_is_nil() && !myDir->_is_nil();
|
//return !myPoint->_is_nil() && !myDir->_is_nil();
|
||||||
|
//nil point means origin of global CS
|
||||||
|
//nil vector means Z axis
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
@ -395,8 +401,10 @@ void BasicGUI_EllipseDlg::addSubshapesToStudy()
|
|||||||
{
|
{
|
||||||
QMap<QString, GEOM::GEOM_Object_var> objMap;
|
QMap<QString, GEOM::GEOM_Object_var> objMap;
|
||||||
|
|
||||||
objMap[GroupPoints->LineEdit1->text()] = myPoint;
|
if (!CORBA::is_nil(myPoint))
|
||||||
objMap[GroupPoints->LineEdit2->text()] = myDir;
|
objMap[GroupPoints->LineEdit1->text()] = myPoint;
|
||||||
|
if (!CORBA::is_nil(myDir))
|
||||||
|
objMap[GroupPoints->LineEdit2->text()] = myDir;
|
||||||
|
|
||||||
addSubshapesToFather( objMap );
|
addSubshapesToFather( objMap );
|
||||||
}
|
}
|
||||||
|
@ -44,7 +44,7 @@
|
|||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
// class : BasicGUI_VectorDlg()
|
// class : BasicGUI_VectorDlg()
|
||||||
// purpose : Constructs a BasicGUI_VectorDlg which is a child of 'parent', with the
|
// purpose : Constructs a BasicGUI_VectorDlg which is a child of 'parent', with the
|
||||||
// name 'name' and widget flags set to 'f'.
|
// name 'name' and widget flags set to 'f'.
|
||||||
// The dialog will by default be modeless, unless you set 'modal' to
|
// The dialog will by default be modeless, unless you set 'modal' to
|
||||||
// TRUE to construct a modal dialog.
|
// TRUE to construct a modal dialog.
|
||||||
@ -91,7 +91,7 @@ BasicGUI_VectorDlg::BasicGUI_VectorDlg( GeometryGUI* theGeometryGUI, QWidget* pa
|
|||||||
/***************************************************************/
|
/***************************************************************/
|
||||||
|
|
||||||
setHelpFileName( "create_vector_page.html" );
|
setHelpFileName( "create_vector_page.html" );
|
||||||
|
|
||||||
/* Initialisations */
|
/* Initialisations */
|
||||||
Init();
|
Init();
|
||||||
}
|
}
|
||||||
@ -102,7 +102,7 @@ BasicGUI_VectorDlg::BasicGUI_VectorDlg( GeometryGUI* theGeometryGUI, QWidget* pa
|
|||||||
// purpose : Destroys the object and frees any allocated resources
|
// purpose : Destroys the object and frees any allocated resources
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
BasicGUI_VectorDlg::~BasicGUI_VectorDlg()
|
BasicGUI_VectorDlg::~BasicGUI_VectorDlg()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -121,7 +121,7 @@ void BasicGUI_VectorDlg::Init()
|
|||||||
/* Get setting of step value from file configuration */
|
/* Get setting of step value from file configuration */
|
||||||
SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
|
SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
|
||||||
double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
|
double step = resMgr->doubleValue( "Geometry", "SettingsGeomStep", 100 );
|
||||||
|
|
||||||
/* min, max, step and decimals for spin boxes */
|
/* min, max, step and decimals for spin boxes */
|
||||||
initSpinBox( GroupDimensions->SpinBox_DX, COORD_MIN, COORD_MAX, step, 3 ); // VSR:TODO : DBL_DIGITS_DISPLAY
|
initSpinBox( GroupDimensions->SpinBox_DX, COORD_MIN, COORD_MAX, step, 3 ); // VSR:TODO : DBL_DIGITS_DISPLAY
|
||||||
initSpinBox( GroupDimensions->SpinBox_DY, COORD_MIN, COORD_MAX, step, 3 ); // VSR:TODO : DBL_DIGITS_DISPLAY
|
initSpinBox( GroupDimensions->SpinBox_DY, COORD_MIN, COORD_MAX, step, 3 ); // VSR:TODO : DBL_DIGITS_DISPLAY
|
||||||
@ -137,7 +137,7 @@ void BasicGUI_VectorDlg::Init()
|
|||||||
/* signals and slots connections */
|
/* signals and slots connections */
|
||||||
connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
|
connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
|
||||||
connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ), this, SLOT( ClickOnCancel() ) );
|
connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ), this, SLOT( ClickOnCancel() ) );
|
||||||
|
|
||||||
connect( buttonOk(), SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
|
connect( buttonOk(), SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
|
||||||
connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
|
connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
|
||||||
|
|
||||||
@ -157,12 +157,13 @@ void BasicGUI_VectorDlg::Init()
|
|||||||
|
|
||||||
connect( GroupDimensions->CheckButton1, SIGNAL( stateChanged( int ) ), this, SLOT( ReverseVector( int ) ) );
|
connect( GroupDimensions->CheckButton1, SIGNAL( stateChanged( int ) ), this, SLOT( ReverseVector( int ) ) );
|
||||||
|
|
||||||
connect( myGeomGUI->getApp()->selectionMgr(),
|
connect( myGeomGUI->getApp()->selectionMgr(),
|
||||||
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
||||||
|
|
||||||
initName( tr("GEOM_VECTOR") );
|
initName( tr("GEOM_VECTOR") );
|
||||||
|
|
||||||
ConstructorsClicked( 0 );
|
setConstructorId( 1 ); // simplest constructor
|
||||||
|
ConstructorsClicked( 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
@ -192,14 +193,14 @@ void BasicGUI_VectorDlg::ConstructorsClicked( int constructorId )
|
|||||||
{
|
{
|
||||||
GroupDimensions->hide();
|
GroupDimensions->hide();
|
||||||
GroupPoints->show();
|
GroupPoints->show();
|
||||||
|
|
||||||
myEditCurrentArgument = GroupPoints->LineEdit1;
|
myEditCurrentArgument = GroupPoints->LineEdit1;
|
||||||
GroupPoints->LineEdit1->setText( "" );
|
GroupPoints->LineEdit1->setText( "" );
|
||||||
GroupPoints->LineEdit2->setText( "" );
|
GroupPoints->LineEdit2->setText( "" );
|
||||||
|
|
||||||
globalSelection(); // close local contexts, if any
|
globalSelection(); // close local contexts, if any
|
||||||
localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
|
localSelection( GEOM::GEOM_Object::_nil(), TopAbs_VERTEX );
|
||||||
connect( myGeomGUI->getApp()->selectionMgr(),
|
connect( myGeomGUI->getApp()->selectionMgr(),
|
||||||
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -208,12 +209,12 @@ void BasicGUI_VectorDlg::ConstructorsClicked( int constructorId )
|
|||||||
GroupPoints->hide();
|
GroupPoints->hide();
|
||||||
GroupDimensions->show();
|
GroupDimensions->show();
|
||||||
globalSelection(); // close local contexts, if any
|
globalSelection(); // close local contexts, if any
|
||||||
|
|
||||||
double dx( 0. ), dy( 0. ), dz( 0. );
|
double dx( 0. ), dy( 0. ), dz( 0. );
|
||||||
GroupDimensions->SpinBox_DX->setValue( dx );
|
GroupDimensions->SpinBox_DX->setValue( dx );
|
||||||
GroupDimensions->SpinBox_DY->setValue( dy );
|
GroupDimensions->SpinBox_DY->setValue( dy );
|
||||||
GroupDimensions->SpinBox_DZ->setValue( dz );
|
GroupDimensions->SpinBox_DZ->setValue( dz );
|
||||||
|
|
||||||
GroupDimensions->CheckButton1->setChecked( false );
|
GroupDimensions->CheckButton1->setChecked( false );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -271,7 +272,7 @@ void BasicGUI_VectorDlg::SelectionIntoArgument()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// nbSel == 1
|
// nbSel == 1
|
||||||
Standard_Boolean aRes = Standard_False;
|
Standard_Boolean aRes = Standard_False;
|
||||||
GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), aRes );
|
GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), aRes );
|
||||||
if ( !CORBA::is_nil( aSelectedObject ) && aRes ) {
|
if ( !CORBA::is_nil( aSelectedObject ) && aRes ) {
|
||||||
@ -334,7 +335,7 @@ void BasicGUI_VectorDlg::SetEditCurrentArgument()
|
|||||||
// purpose :
|
// purpose :
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
void BasicGUI_VectorDlg::LineEditReturnPressed()
|
void BasicGUI_VectorDlg::LineEditReturnPressed()
|
||||||
{
|
{
|
||||||
QLineEdit* send = (QLineEdit*)sender();
|
QLineEdit* send = (QLineEdit*)sender();
|
||||||
if ( send == GroupPoints->LineEdit1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
|
if ( send == GroupPoints->LineEdit1 ) myEditCurrentArgument = GroupPoints->LineEdit1;
|
||||||
else if ( send == GroupPoints->LineEdit2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
|
else if ( send == GroupPoints->LineEdit2 ) myEditCurrentArgument = GroupPoints->LineEdit2;
|
||||||
@ -397,7 +398,7 @@ void BasicGUI_VectorDlg::ReverseVector( int state )
|
|||||||
GroupDimensions->SpinBox_DX->setValue( dx );
|
GroupDimensions->SpinBox_DX->setValue( dx );
|
||||||
GroupDimensions->SpinBox_DY->setValue( dy );
|
GroupDimensions->SpinBox_DY->setValue( dy );
|
||||||
GroupDimensions->SpinBox_DZ->setValue( dz );
|
GroupDimensions->SpinBox_DZ->setValue( dz );
|
||||||
|
|
||||||
displayPreview();
|
displayPreview();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -426,7 +427,7 @@ bool BasicGUI_VectorDlg::isValid( QString& msg )
|
|||||||
bool BasicGUI_VectorDlg::execute( ObjectList& objects )
|
bool BasicGUI_VectorDlg::execute( ObjectList& objects )
|
||||||
{
|
{
|
||||||
bool res = false;
|
bool res = false;
|
||||||
|
|
||||||
GEOM::GEOM_Object_var anObj;
|
GEOM::GEOM_Object_var anObj;
|
||||||
|
|
||||||
switch ( getConstructorId() ) {
|
switch ( getConstructorId() ) {
|
||||||
|
@ -102,20 +102,20 @@ BasicGUI_WorkingPlaneDlg::BasicGUI_WorkingPlaneDlg( GeometryGUI* theGeometryGUI,
|
|||||||
/***************************************************************/
|
/***************************************************************/
|
||||||
QGroupBox* aReverseGroupBox = new QGroupBox( centralWidget() );
|
QGroupBox* aReverseGroupBox = new QGroupBox( centralWidget() );
|
||||||
QHBoxLayout* aReverseGroupBoxLayout = new QHBoxLayout( aReverseGroupBox );
|
QHBoxLayout* aReverseGroupBoxLayout = new QHBoxLayout( aReverseGroupBox );
|
||||||
aReverseGroupBoxLayout->setMargin( 9 );
|
aReverseGroupBoxLayout->setMargin( 9 );
|
||||||
aReverseGroupBoxLayout->setSpacing( 6 );
|
aReverseGroupBoxLayout->setSpacing( 6 );
|
||||||
|
|
||||||
myReverseCB = new QCheckBox( aReverseGroupBox );
|
myReverseCB = new QCheckBox( aReverseGroupBox );
|
||||||
myReverseCB->setText( tr( "GEOM_REVERSE_PLANE" ) );
|
myReverseCB->setText( tr( "GEOM_REVERSE_PLANE" ) );
|
||||||
aReverseGroupBoxLayout->addWidget( myReverseCB );
|
aReverseGroupBoxLayout->addWidget( myReverseCB );
|
||||||
|
|
||||||
QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
|
QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
|
||||||
layout->setMargin( 0 ); layout->setSpacing( 6 );
|
layout->setMargin( 0 ); layout->setSpacing( 6 );
|
||||||
layout->addWidget( Group1 );
|
layout->addWidget( Group1 );
|
||||||
layout->addWidget( Group2 );
|
layout->addWidget( Group2 );
|
||||||
layout->addWidget( Group3 );
|
layout->addWidget( Group3 );
|
||||||
layout->addWidget( aReverseGroupBox );
|
layout->addWidget( aReverseGroupBox );
|
||||||
|
|
||||||
setHelpFileName( "create_wplane_page.html" );
|
setHelpFileName( "create_wplane_page.html" );
|
||||||
|
|
||||||
Init();
|
Init();
|
||||||
@ -175,7 +175,8 @@ void BasicGUI_WorkingPlaneDlg::Init()
|
|||||||
|
|
||||||
initName( tr( "GEOM_WPLANE" ) );
|
initName( tr( "GEOM_WPLANE" ) );
|
||||||
|
|
||||||
ConstructorsClicked( 0 );
|
setConstructorId( 2 ); // simplest constructor
|
||||||
|
ConstructorsClicked( 2 );
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
@ -196,15 +197,15 @@ void BasicGUI_WorkingPlaneDlg::ConstructorsClicked( int constructorId )
|
|||||||
aMap.Add( GEOM_PLANE );
|
aMap.Add( GEOM_PLANE );
|
||||||
aMap.Add( GEOM_MARKER );
|
aMap.Add( GEOM_MARKER );
|
||||||
globalSelection( aMap );
|
globalSelection( aMap );
|
||||||
|
|
||||||
Group2->hide();
|
Group2->hide();
|
||||||
Group3->hide();
|
Group3->hide();
|
||||||
Group1->show();
|
Group1->show();
|
||||||
|
|
||||||
myEditCurrentArgument = Group1->LineEdit1;
|
myEditCurrentArgument = Group1->LineEdit1;
|
||||||
Group1->LineEdit1->setText( "" );
|
Group1->LineEdit1->setText( "" );
|
||||||
myFace = GEOM::GEOM_Object::_nil();
|
myFace = GEOM::GEOM_Object::_nil();
|
||||||
|
|
||||||
connect( aSelMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
connect( aSelMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -213,17 +214,17 @@ void BasicGUI_WorkingPlaneDlg::ConstructorsClicked( int constructorId )
|
|||||||
//globalSelection( GEOM_LINE );
|
//globalSelection( GEOM_LINE );
|
||||||
GEOM::GEOM_Object_var anObj;
|
GEOM::GEOM_Object_var anObj;
|
||||||
localSelection( anObj, TopAbs_EDGE );
|
localSelection( anObj, TopAbs_EDGE );
|
||||||
|
|
||||||
Group1->hide();
|
Group1->hide();
|
||||||
Group3->hide();
|
Group3->hide();
|
||||||
Group2->show();
|
Group2->show();
|
||||||
|
|
||||||
myEditCurrentArgument = Group2->LineEdit1;
|
myEditCurrentArgument = Group2->LineEdit1;
|
||||||
Group2->LineEdit1->setText( "" );
|
Group2->LineEdit1->setText( "" );
|
||||||
Group2->LineEdit2->setText( "" );
|
Group2->LineEdit2->setText( "" );
|
||||||
myVectX = GEOM::GEOM_Object::_nil();
|
myVectX = GEOM::GEOM_Object::_nil();
|
||||||
myVectZ = GEOM::GEOM_Object::_nil();
|
myVectZ = GEOM::GEOM_Object::_nil();
|
||||||
|
|
||||||
connect( aSelMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
connect( aSelMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -232,13 +233,13 @@ void BasicGUI_WorkingPlaneDlg::ConstructorsClicked( int constructorId )
|
|||||||
Group1->hide();
|
Group1->hide();
|
||||||
Group2->hide();
|
Group2->hide();
|
||||||
Group3->show();
|
Group3->show();
|
||||||
|
|
||||||
Group3->RadioButton1->setChecked( true );
|
Group3->RadioButton1->setChecked( true );
|
||||||
aOriginType = 1;
|
aOriginType = 1;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
qApp->processEvents();
|
qApp->processEvents();
|
||||||
updateGeometry();
|
updateGeometry();
|
||||||
resize( minimumSize() );
|
resize( minimumSize() );
|
||||||
@ -274,12 +275,12 @@ bool BasicGUI_WorkingPlaneDlg::ClickOnApply()
|
|||||||
{
|
{
|
||||||
buttonApply()->setFocus();
|
buttonApply()->setFocus();
|
||||||
myGeomGUI->application()->putInfo( "" );
|
myGeomGUI->application()->putInfo( "" );
|
||||||
|
|
||||||
if ( updateWPlane( false ) ) {
|
if ( updateWPlane( false ) ) {
|
||||||
myGeomGUI->SetWorkingPlane( myWPlane );
|
myGeomGUI->SetWorkingPlane( myWPlane );
|
||||||
myGeomGUI->ActiveWorkingPlane();
|
myGeomGUI->ActiveWorkingPlane();
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -316,7 +317,7 @@ void BasicGUI_WorkingPlaneDlg::SelectionIntoArgument()
|
|||||||
|
|
||||||
if ( myEditCurrentArgument == Group1->LineEdit1 )
|
if ( myEditCurrentArgument == Group1->LineEdit1 )
|
||||||
myFace = aSelectedObject;
|
myFace = aSelectedObject;
|
||||||
else if ( myEditCurrentArgument == Group2->LineEdit1 ||
|
else if ( myEditCurrentArgument == Group2->LineEdit1 ||
|
||||||
myEditCurrentArgument == Group2->LineEdit2 ) {
|
myEditCurrentArgument == Group2->LineEdit2 ) {
|
||||||
if ( aRes && !aSelectedObject->_is_nil() ) {
|
if ( aRes && !aSelectedObject->_is_nil() ) {
|
||||||
TopoDS_Shape aShape;
|
TopoDS_Shape aShape;
|
||||||
@ -347,7 +348,7 @@ void BasicGUI_WorkingPlaneDlg::SelectionIntoArgument()
|
|||||||
}
|
}
|
||||||
|
|
||||||
myEditCurrentArgument->setText( aName );
|
myEditCurrentArgument->setText( aName );
|
||||||
|
|
||||||
updateWPlane();
|
updateWPlane();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -445,7 +446,7 @@ void BasicGUI_WorkingPlaneDlg::enterEvent( QEvent* )
|
|||||||
bool BasicGUI_WorkingPlaneDlg::updateWPlane( const bool showPreview )
|
bool BasicGUI_WorkingPlaneDlg::updateWPlane( const bool showPreview )
|
||||||
{
|
{
|
||||||
erasePreview();
|
erasePreview();
|
||||||
|
|
||||||
const int id = getConstructorId();
|
const int id = getConstructorId();
|
||||||
|
|
||||||
if ( id == 0 ) { // by planar face selection
|
if ( id == 0 ) { // by planar face selection
|
||||||
@ -470,20 +471,20 @@ bool BasicGUI_WorkingPlaneDlg::updateWPlane( const bool showPreview )
|
|||||||
gp_Dir aDirN ( Zx, Zy, Zz );
|
gp_Dir aDirN ( Zx, Zy, Zz );
|
||||||
gp_Dir aDirX ( Xx, Xy, Xz );
|
gp_Dir aDirX ( Xx, Xy, Xz );
|
||||||
myWPlane = gp_Ax3( aPnt, aDirN, aDirX );
|
myWPlane = gp_Ax3( aPnt, aDirN, aDirX );
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if ( !showPreview )
|
if ( !showPreview )
|
||||||
showError( "Wrong shape selected (has to be a planar face)" );
|
showError( "Wrong shape selected (has to be a planar face)" );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if ( id == 1 ) { // by two vectors (Ox & Oz)
|
else if ( id == 1 ) { // by two vectors (Ox & Oz)
|
||||||
if ( CORBA::is_nil( myVectX ) || CORBA::is_nil( myVectZ ) ) {
|
if ( CORBA::is_nil( myVectX ) || CORBA::is_nil( myVectZ ) ) {
|
||||||
if ( !showPreview )
|
if ( !showPreview )
|
||||||
showError( "Two vectors have to be selected" );
|
showError( "Two vectors have to be selected" );
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
TopoDS_Edge aVectX, aVectZ;
|
TopoDS_Edge aVectX, aVectZ;
|
||||||
TopoDS_Vertex VX1, VX2, VZ1, VZ2;
|
TopoDS_Vertex VX1, VX2, VZ1, VZ2;
|
||||||
gp_Vec aVX, aVZ;
|
gp_Vec aVX, aVZ;
|
||||||
@ -534,7 +535,7 @@ bool BasicGUI_WorkingPlaneDlg::updateWPlane( const bool showPreview )
|
|||||||
|
|
||||||
myWPlane = gp_Ax3( BRep_Tool::Pnt( VX1 ), aDirZ, aDirX );
|
myWPlane = gp_Ax3( BRep_Tool::Pnt( VX1 ), aDirZ, aDirX );
|
||||||
|
|
||||||
}
|
}
|
||||||
else if ( id == 2 ) { // by selection from standard (OXY or OYZ, or OZX)
|
else if ( id == 2 ) { // by selection from standard (OXY or OYZ, or OZX)
|
||||||
gp_Ax2 anAx2;
|
gp_Ax2 anAx2;
|
||||||
|
|
||||||
@ -544,23 +545,24 @@ bool BasicGUI_WorkingPlaneDlg::updateWPlane( const bool showPreview )
|
|||||||
|
|
||||||
myWPlane = gp_Ax3( anAx2 );
|
myWPlane = gp_Ax3( anAx2 );
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( myReverseCB->isChecked() ) {
|
if ( myReverseCB->isChecked() ) {
|
||||||
myWPlane.YReverse();
|
myWPlane.YReverse();
|
||||||
myWPlane.ZReverse();
|
myWPlane.ZReverse();
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( showPreview ) {
|
if ( showPreview ) {
|
||||||
GEOM::GEOM_IBasicOperations_var aBasicOp = getGeomEngine()->GetIBasicOperations( getStudyId() );
|
GEOM::GEOM_IBasicOperations_var aBasicOp = getGeomEngine()->GetIBasicOperations( getStudyId() );
|
||||||
GEOM::GEOM_Object_var anObj = aBasicOp->MakeMarker( myWPlane.Location().X(), myWPlane.Location().Y(), myWPlane.Location().Z(),
|
GEOM::GEOM_Object_var anObj = aBasicOp->MakeMarker
|
||||||
myWPlane.XDirection().X(), myWPlane.XDirection().Y(), myWPlane.XDirection().Z(),
|
( myWPlane.Location().X(), myWPlane.Location().Y(), myWPlane.Location().Z(),
|
||||||
myWPlane.YDirection().X(), myWPlane.YDirection().Y(), myWPlane.YDirection().Z() );
|
myWPlane.XDirection().X(), myWPlane.XDirection().Y(), myWPlane.XDirection().Z(),
|
||||||
|
myWPlane.YDirection().X(), myWPlane.YDirection().Y(), myWPlane.YDirection().Z() );
|
||||||
displayPreview( anObj );
|
displayPreview( anObj );
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
@ -77,65 +77,87 @@ Standard_Integer GEOMImpl_CircleDriver::Execute(TFunction_Logbook& log) const
|
|||||||
TopoDS_Shape aShape;
|
TopoDS_Shape aShape;
|
||||||
|
|
||||||
if (aType == CIRCLE_PNT_VEC_R) {
|
if (aType == CIRCLE_PNT_VEC_R) {
|
||||||
Handle(GEOM_Function) aRefPoint = aCI.GetCenter();
|
// Center
|
||||||
|
gp_Pnt aP = gp::Origin();
|
||||||
|
Handle(GEOM_Function) aRefPoint = aCI.GetCenter();
|
||||||
|
if (!aRefPoint.IsNull()) {
|
||||||
|
TopoDS_Shape aShapePnt = aRefPoint->GetValue();
|
||||||
|
if (aShapePnt.ShapeType() != TopAbs_VERTEX) {
|
||||||
|
Standard_ConstructionError::Raise
|
||||||
|
("Circle creation aborted: invalid center argument, must be a point");
|
||||||
|
}
|
||||||
|
aP = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt));
|
||||||
|
}
|
||||||
|
// Normal
|
||||||
|
gp_Vec aV = gp::DZ();
|
||||||
Handle(GEOM_Function) aRefVector = aCI.GetVector();
|
Handle(GEOM_Function) aRefVector = aCI.GetVector();
|
||||||
TopoDS_Shape aShapePnt = aRefPoint->GetValue();
|
if (!aRefVector.IsNull()) {
|
||||||
TopoDS_Shape aShapeVec = aRefVector->GetValue();
|
TopoDS_Shape aShapeVec = aRefVector->GetValue();
|
||||||
if (aShapePnt.ShapeType() == TopAbs_VERTEX &&
|
if (aShapeVec.ShapeType() != TopAbs_EDGE) {
|
||||||
aShapeVec.ShapeType() == TopAbs_EDGE) {
|
Standard_ConstructionError::Raise
|
||||||
gp_Pnt aP = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt));
|
("Circle creation aborted: invalid vector argument, must be a vector or an edge");
|
||||||
|
}
|
||||||
TopoDS_Edge anE = TopoDS::Edge(aShapeVec);
|
TopoDS_Edge anE = TopoDS::Edge(aShapeVec);
|
||||||
TopoDS_Vertex V1, V2;
|
TopoDS_Vertex V1, V2;
|
||||||
TopExp::Vertices(anE, V1, V2, Standard_True);
|
TopExp::Vertices(anE, V1, V2, Standard_True);
|
||||||
if (!V1.IsNull() && !V2.IsNull()) {
|
if (!V1.IsNull() && !V2.IsNull()) {
|
||||||
gp_Vec aV (BRep_Tool::Pnt(V1), BRep_Tool::Pnt(V2));
|
aV = gp_Vec(BRep_Tool::Pnt(V1), BRep_Tool::Pnt(V2));
|
||||||
gp_Ax2 anAxes (aP, aV);
|
if (aV.Magnitude() < gp::Resolution()) {
|
||||||
gp_Circ aCirc (anAxes, aCI.GetRadius());
|
Standard_ConstructionError::Raise
|
||||||
aShape = BRepBuilderAPI_MakeEdge(aCirc).Edge();
|
("Circle creation aborted: vector of zero length is given");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Axes
|
||||||
|
gp_Ax2 anAxes (aP, aV);
|
||||||
|
// Circle
|
||||||
|
gp_Circ aCirc (anAxes, aCI.GetRadius());
|
||||||
|
aShape = BRepBuilderAPI_MakeEdge(aCirc).Edge();
|
||||||
}
|
}
|
||||||
else if (aType == CIRCLE_CENTER_TWO_PNT) {
|
else if (aType == CIRCLE_CENTER_TWO_PNT) {
|
||||||
Handle(GEOM_Function) aRefPoint1 = aCI.GetPoint1();
|
Handle(GEOM_Function) aRefPoint1 = aCI.GetPoint1();
|
||||||
Handle(GEOM_Function) aRefPoint2 = aCI.GetPoint2();
|
Handle(GEOM_Function) aRefPoint2 = aCI.GetPoint2();
|
||||||
Handle(GEOM_Function) aRefPoint3 = aCI.GetPoint3();
|
Handle(GEOM_Function) aRefPoint3 = aCI.GetPoint3();
|
||||||
TopoDS_Shape aShapePnt1 = aRefPoint1->GetValue();
|
TopoDS_Shape aShapePnt1 = aRefPoint1->GetValue();
|
||||||
TopoDS_Shape aShapePnt2 = aRefPoint2->GetValue();
|
TopoDS_Shape aShapePnt2 = aRefPoint2->GetValue();
|
||||||
TopoDS_Shape aShapePnt3 = aRefPoint3->GetValue();
|
TopoDS_Shape aShapePnt3 = aRefPoint3->GetValue();
|
||||||
if (aShapePnt1.ShapeType() == TopAbs_VERTEX && aShapePnt2.ShapeType() == TopAbs_VERTEX &&
|
if (aShapePnt1.ShapeType() == TopAbs_VERTEX &&
|
||||||
aShapePnt3.ShapeType() == TopAbs_VERTEX)
|
aShapePnt2.ShapeType() == TopAbs_VERTEX &&
|
||||||
{
|
aShapePnt3.ShapeType() == TopAbs_VERTEX)
|
||||||
gp_Pnt aP1 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt1));
|
{
|
||||||
gp_Pnt aP2 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt2));
|
gp_Pnt aP1 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt1));
|
||||||
gp_Pnt aP3 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt3));
|
gp_Pnt aP2 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt2));
|
||||||
|
gp_Pnt aP3 = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt3));
|
||||||
|
|
||||||
if (aP1.Distance(aP2) < gp::Resolution() ||
|
if (aP1.Distance(aP2) < gp::Resolution() ||
|
||||||
aP1.Distance(aP3) < gp::Resolution() ||
|
aP1.Distance(aP3) < gp::Resolution() ||
|
||||||
aP2.Distance(aP3) < gp::Resolution())
|
aP2.Distance(aP3) < gp::Resolution())
|
||||||
Standard_ConstructionError::Raise("Circle creation aborted: coincident points given");
|
Standard_ConstructionError::Raise("Circle creation aborted: coincident points given");
|
||||||
if (gp_Vec(aP1, aP2).IsParallel(gp_Vec(aP1, aP3), Precision::Angular()))
|
|
||||||
Standard_ConstructionError::Raise("Circle creation aborted: points lay on one line");
|
if (gp_Vec(aP1, aP2).IsParallel(gp_Vec(aP1, aP3), Precision::Angular()))
|
||||||
double x, y, z, x1, y1, z1, x2, y2, z2, dx, dy, dz, dx2, dy2, dz2, dx3, dy3, dz3, aRadius;
|
Standard_ConstructionError::Raise("Circle creation aborted: points lay on one line");
|
||||||
//Calculations for Radius
|
|
||||||
x = aP1.X(); y = aP1.Y(); z = aP1.Z();
|
double x, y, z, x1, y1, z1, x2, y2, z2, dx, dy, dz, dx2, dy2, dz2, dx3, dy3, dz3, aRadius;
|
||||||
x1 = aP2.X(); y1 = aP2.Y(); z1 = aP2.Z();
|
//Calculations for Radius
|
||||||
dx = x1 - x;
|
x = aP1.X(); y = aP1.Y(); z = aP1.Z();
|
||||||
dy = y1 - y;
|
x1 = aP2.X(); y1 = aP2.Y(); z1 = aP2.Z();
|
||||||
dz = z1 - z;
|
dx = x1 - x;
|
||||||
aRadius = sqrt(dx*dx + dy*dy + dz*dz);
|
dy = y1 - y;
|
||||||
//Calculations for Plane Vector
|
dz = z1 - z;
|
||||||
x2 = aP3.X(); y2 = aP3.Y(); z2 = aP3.Z();
|
aRadius = sqrt(dx*dx + dy*dy + dz*dz);
|
||||||
dx2 = x2 - x; dy2 = y2 - y; dz2 = z2 - z;
|
//Calculations for Plane Vector
|
||||||
dx3 = ((dy*dz2) - (dy2*dz))/100;
|
x2 = aP3.X(); y2 = aP3.Y(); z2 = aP3.Z();
|
||||||
dy3 = ((dx2*dz) - (dx*dz2))/100;
|
dx2 = x2 - x; dy2 = y2 - y; dz2 = z2 - z;
|
||||||
dz3 = ((dx*dy2) - (dx2*dy))/100;
|
dx3 = ((dy*dz2) - (dy2*dz))/100;
|
||||||
//Make Plane Vector
|
dy3 = ((dx2*dz) - (dx*dz2))/100;
|
||||||
gp_Dir aDir ( dx3, dy3, dz3 );
|
dz3 = ((dx*dy2) - (dx2*dy))/100;
|
||||||
//Make Circle
|
//Make Plane Vector
|
||||||
gp_Ax2 anAxes (aP1, aDir);
|
gp_Dir aDir ( dx3, dy3, dz3 );
|
||||||
gp_Circ aCirc (anAxes, aRadius);
|
//Make Circle
|
||||||
aShape = BRepBuilderAPI_MakeEdge(aCirc).Edge();
|
gp_Ax2 anAxes (aP1, aDir);
|
||||||
}
|
gp_Circ aCirc (anAxes, aRadius);
|
||||||
|
aShape = BRepBuilderAPI_MakeEdge(aCirc).Edge();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (aType == CIRCLE_THREE_PNT) {
|
else if (aType == CIRCLE_THREE_PNT) {
|
||||||
Handle(GEOM_Function) aRefPoint1 = aCI.GetPoint1();
|
Handle(GEOM_Function) aRefPoint1 = aCI.GetPoint1();
|
||||||
@ -160,7 +182,7 @@ Standard_Integer GEOMImpl_CircleDriver::Execute(TFunction_Logbook& log) const
|
|||||||
aShape = BRepBuilderAPI_MakeEdge(aCirc).Edge();
|
aShape = BRepBuilderAPI_MakeEdge(aCirc).Edge();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aShape.IsNull()) return 0;
|
if (aShape.IsNull()) return 0;
|
||||||
|
@ -71,24 +71,44 @@ Standard_Integer GEOMImpl_EllipseDriver::Execute(TFunction_Logbook& log) const
|
|||||||
TopoDS_Shape aShape;
|
TopoDS_Shape aShape;
|
||||||
|
|
||||||
if (aType == ELLIPSE_PNT_VEC_RR) {
|
if (aType == ELLIPSE_PNT_VEC_RR) {
|
||||||
Handle(GEOM_Function) aRefPoint = aCI.GetCenter();
|
// Center
|
||||||
|
gp_Pnt aP = gp::Origin();
|
||||||
|
Handle(GEOM_Function) aRefPoint = aCI.GetCenter();
|
||||||
|
if (!aRefPoint.IsNull()) {
|
||||||
|
TopoDS_Shape aShapePnt = aRefPoint->GetValue();
|
||||||
|
if (aShapePnt.ShapeType() != TopAbs_VERTEX) {
|
||||||
|
Standard_ConstructionError::Raise
|
||||||
|
("Circle creation aborted: invalid center argument, must be a point");
|
||||||
|
}
|
||||||
|
aP = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt));
|
||||||
|
}
|
||||||
|
// Normal
|
||||||
|
gp_Vec aV = gp::DZ();
|
||||||
Handle(GEOM_Function) aRefVector = aCI.GetVector();
|
Handle(GEOM_Function) aRefVector = aCI.GetVector();
|
||||||
TopoDS_Shape aShapePnt = aRefPoint->GetValue();
|
if (!aRefVector.IsNull()) {
|
||||||
TopoDS_Shape aShapeVec = aRefVector->GetValue();
|
TopoDS_Shape aShapeVec = aRefVector->GetValue();
|
||||||
if (aShapePnt.ShapeType() == TopAbs_VERTEX &&
|
if (aShapeVec.ShapeType() != TopAbs_EDGE) {
|
||||||
aShapeVec.ShapeType() == TopAbs_EDGE) {
|
Standard_ConstructionError::Raise
|
||||||
gp_Pnt aP = BRep_Tool::Pnt(TopoDS::Vertex(aShapePnt));
|
("Circle creation aborted: invalid vector argument, must be a vector or an edge");
|
||||||
|
}
|
||||||
TopoDS_Edge anE = TopoDS::Edge(aShapeVec);
|
TopoDS_Edge anE = TopoDS::Edge(aShapeVec);
|
||||||
TopoDS_Vertex V1, V2;
|
TopoDS_Vertex V1, V2;
|
||||||
TopExp::Vertices(anE, V1, V2, Standard_True);
|
TopExp::Vertices(anE, V1, V2, Standard_True);
|
||||||
if (!V1.IsNull() && !V2.IsNull()) {
|
if (!V1.IsNull() && !V2.IsNull()) {
|
||||||
gp_Vec aV (BRep_Tool::Pnt(V1), BRep_Tool::Pnt(V2));
|
aV = gp_Vec(BRep_Tool::Pnt(V1), BRep_Tool::Pnt(V2));
|
||||||
gp_Ax2 anAxes (aP, aV);
|
if (aV.Magnitude() < gp::Resolution()) {
|
||||||
gp_Elips anEll (anAxes, aCI.GetRMajor(), aCI.GetRMinor());
|
Standard_ConstructionError::Raise
|
||||||
aShape = BRepBuilderAPI_MakeEdge(anEll).Edge();
|
("Circle creation aborted: vector of zero length is given");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
// Axes
|
||||||
|
gp_Ax2 anAxes (aP, aV);
|
||||||
|
// Ellipse
|
||||||
|
gp_Elips anEll (anAxes, aCI.GetRMajor(), aCI.GetRMinor());
|
||||||
|
aShape = BRepBuilderAPI_MakeEdge(anEll).Edge();
|
||||||
|
}
|
||||||
|
else {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aShape.IsNull()) return 0;
|
if (aShape.IsNull()) return 0;
|
||||||
|
@ -266,7 +266,9 @@ Handle(GEOM_Object) GEOMImpl_ICurvesOperations::MakeCirclePntVecR
|
|||||||
{
|
{
|
||||||
SetErrorCode(KO);
|
SetErrorCode(KO);
|
||||||
|
|
||||||
if (thePnt.IsNull() || theVec.IsNull()) return NULL;
|
// Not set thePnt means origin of global CS,
|
||||||
|
// Not set theVec means Z axis of global CS
|
||||||
|
//if (thePnt.IsNull() || theVec.IsNull()) return NULL;
|
||||||
|
|
||||||
//Add a new Circle object
|
//Add a new Circle object
|
||||||
Handle(GEOM_Object) aCircle = GetEngine()->AddObject(GetDocID(), GEOM_CIRCLE);
|
Handle(GEOM_Object) aCircle = GetEngine()->AddObject(GetDocID(), GEOM_CIRCLE);
|
||||||
@ -281,13 +283,18 @@ Handle(GEOM_Object) GEOMImpl_ICurvesOperations::MakeCirclePntVecR
|
|||||||
|
|
||||||
GEOMImpl_ICircle aCI (aFunction);
|
GEOMImpl_ICircle aCI (aFunction);
|
||||||
|
|
||||||
Handle(GEOM_Function) aRefPnt = thePnt->GetLastFunction();
|
if (!thePnt.IsNull()) {
|
||||||
Handle(GEOM_Function) aRefVec = theVec->GetLastFunction();
|
Handle(GEOM_Function) aRefPnt = thePnt->GetLastFunction();
|
||||||
|
if (aRefPnt.IsNull()) return NULL;
|
||||||
|
aCI.SetCenter(aRefPnt);
|
||||||
|
}
|
||||||
|
|
||||||
if (aRefPnt.IsNull() || aRefVec.IsNull()) return NULL;
|
if (!theVec.IsNull()) {
|
||||||
|
Handle(GEOM_Function) aRefVec = theVec->GetLastFunction();
|
||||||
|
if (aRefVec.IsNull()) return NULL;
|
||||||
|
aCI.SetVector(aRefVec);
|
||||||
|
}
|
||||||
|
|
||||||
aCI.SetCenter(aRefPnt);
|
|
||||||
aCI.SetVector(aRefVec);
|
|
||||||
aCI.SetRadius(theR);
|
aCI.SetRadius(theR);
|
||||||
|
|
||||||
//Compute the Circle value
|
//Compute the Circle value
|
||||||
@ -325,7 +332,9 @@ Handle(GEOM_Object) GEOMImpl_ICurvesOperations::MakeEllipse
|
|||||||
{
|
{
|
||||||
SetErrorCode(KO);
|
SetErrorCode(KO);
|
||||||
|
|
||||||
if (thePnt.IsNull() || theVec.IsNull()) return NULL;
|
// Not set thePnt means origin of global CS,
|
||||||
|
// Not set theVec means Z axis of global CS
|
||||||
|
//if (thePnt.IsNull() || theVec.IsNull()) return NULL;
|
||||||
|
|
||||||
//Add a new Ellipse object
|
//Add a new Ellipse object
|
||||||
Handle(GEOM_Object) anEll = GetEngine()->AddObject(GetDocID(), GEOM_ELLIPSE);
|
Handle(GEOM_Object) anEll = GetEngine()->AddObject(GetDocID(), GEOM_ELLIPSE);
|
||||||
@ -340,13 +349,18 @@ Handle(GEOM_Object) GEOMImpl_ICurvesOperations::MakeEllipse
|
|||||||
|
|
||||||
GEOMImpl_IEllipse aCI (aFunction);
|
GEOMImpl_IEllipse aCI (aFunction);
|
||||||
|
|
||||||
Handle(GEOM_Function) aRefPnt = thePnt->GetLastFunction();
|
if (!thePnt.IsNull()) {
|
||||||
Handle(GEOM_Function) aRefVec = theVec->GetLastFunction();
|
Handle(GEOM_Function) aRefPnt = thePnt->GetLastFunction();
|
||||||
|
if (aRefPnt.IsNull()) return NULL;
|
||||||
|
aCI.SetCenter(aRefPnt);
|
||||||
|
}
|
||||||
|
|
||||||
if (aRefPnt.IsNull() || aRefVec.IsNull()) return NULL;
|
if (!theVec.IsNull()) {
|
||||||
|
Handle(GEOM_Function) aRefVec = theVec->GetLastFunction();
|
||||||
|
if (aRefVec.IsNull()) return NULL;
|
||||||
|
aCI.SetVector(aRefVec);
|
||||||
|
}
|
||||||
|
|
||||||
aCI.SetCenter(aRefPnt);
|
|
||||||
aCI.SetVector(aRefVec);
|
|
||||||
aCI.SetRMajor(theRMajor);
|
aCI.SetRMajor(theRMajor);
|
||||||
aCI.SetRMinor(theRMinor);
|
aCI.SetRMinor(theRMinor);
|
||||||
|
|
||||||
|
@ -65,15 +65,22 @@ GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeCirclePntVecR
|
|||||||
//Set a not done flag
|
//Set a not done flag
|
||||||
GetOperations()->SetNotDone();
|
GetOperations()->SetNotDone();
|
||||||
|
|
||||||
if (thePnt == NULL || theVec == NULL) return aGEOMObject._retn();
|
// Not set thePnt means origin of global CS,
|
||||||
|
// Not set theVec means Z axis of global CS
|
||||||
|
//if (thePnt == NULL || theVec == NULL) return aGEOMObject._retn();
|
||||||
|
|
||||||
//Get the reference points
|
//Get the arguments
|
||||||
Handle(GEOM_Object) aPnt = GetOperations()->GetEngine()->GetObject
|
Handle(GEOM_Object) aPnt, aVec;
|
||||||
(thePnt->GetStudyID(), thePnt->GetEntry());
|
if (!CORBA::is_nil(thePnt)) {
|
||||||
Handle(GEOM_Object) aVec = GetOperations()->GetEngine()->GetObject
|
aPnt = GetOperations()->GetEngine()->GetObject
|
||||||
(theVec->GetStudyID(), theVec->GetEntry());
|
(thePnt->GetStudyID(), thePnt->GetEntry());
|
||||||
|
if (aPnt.IsNull()) return aGEOMObject._retn();
|
||||||
if (aPnt.IsNull() || aVec.IsNull()) return aGEOMObject._retn();
|
}
|
||||||
|
if (!CORBA::is_nil(theVec)) {
|
||||||
|
aVec = GetOperations()->GetEngine()->GetObject
|
||||||
|
(theVec->GetStudyID(), theVec->GetEntry());
|
||||||
|
if (aVec.IsNull()) return aGEOMObject._retn();
|
||||||
|
}
|
||||||
|
|
||||||
// Make Circle
|
// Make Circle
|
||||||
Handle(GEOM_Object) anObject =
|
Handle(GEOM_Object) anObject =
|
||||||
@ -167,15 +174,22 @@ GEOM::GEOM_Object_ptr GEOM_ICurvesOperations_i::MakeEllipse
|
|||||||
//Set a not done flag
|
//Set a not done flag
|
||||||
GetOperations()->SetNotDone();
|
GetOperations()->SetNotDone();
|
||||||
|
|
||||||
if (thePnt == NULL || theVec == NULL) return aGEOMObject._retn();
|
// Not set thePnt means origin of global CS,
|
||||||
|
// Not set theVec means Z axis of global CS
|
||||||
|
//if (thePnt == NULL || theVec == NULL) return aGEOMObject._retn();
|
||||||
|
|
||||||
//Get the reference points
|
//Get the arguments
|
||||||
Handle(GEOM_Object) aPnt = GetOperations()->GetEngine()->GetObject
|
Handle(GEOM_Object) aPnt, aVec;
|
||||||
(thePnt->GetStudyID(), thePnt->GetEntry());
|
if (!CORBA::is_nil(thePnt)) {
|
||||||
Handle(GEOM_Object) aVec = GetOperations()->GetEngine()->GetObject
|
aPnt = GetOperations()->GetEngine()->GetObject
|
||||||
(theVec->GetStudyID(), theVec->GetEntry());
|
(thePnt->GetStudyID(), thePnt->GetEntry());
|
||||||
|
if (aPnt.IsNull()) return aGEOMObject._retn();
|
||||||
if (aPnt.IsNull() || aVec.IsNull()) return aGEOMObject._retn();
|
}
|
||||||
|
if (!CORBA::is_nil(theVec)) {
|
||||||
|
aVec = GetOperations()->GetEngine()->GetObject
|
||||||
|
(theVec->GetStudyID(), theVec->GetEntry());
|
||||||
|
if (aVec.IsNull()) return aGEOMObject._retn();
|
||||||
|
}
|
||||||
|
|
||||||
// Make Ellipse
|
// Make Ellipse
|
||||||
Handle(GEOM_Object) anObject =
|
Handle(GEOM_Object) anObject =
|
||||||
|
@ -500,12 +500,22 @@ class geompyDC(GEOM._objref_GEOM_Gen):
|
|||||||
# @return New GEOM_Object, containing the created circle.
|
# @return New GEOM_Object, containing the created circle.
|
||||||
#
|
#
|
||||||
# @ref tui_creation_circle "Example"
|
# @ref tui_creation_circle "Example"
|
||||||
def MakeCircle(self,thePnt, theVec, theR):
|
def MakeCircle(self, thePnt, theVec, theR):
|
||||||
# Example: see GEOM_TestAll.py
|
# Example: see GEOM_TestAll.py
|
||||||
anObj = self.CurvesOp.MakeCirclePntVecR(thePnt, theVec, theR)
|
anObj = self.CurvesOp.MakeCirclePntVecR(thePnt, theVec, theR)
|
||||||
RaiseIfFailed("MakeCirclePntVecR", self.CurvesOp)
|
RaiseIfFailed("MakeCirclePntVecR", self.CurvesOp)
|
||||||
return anObj
|
return anObj
|
||||||
|
|
||||||
|
## Create a circle with given radius.
|
||||||
|
# Center of the circle will be in the origin of global
|
||||||
|
# coordinate system and normal vector will be codirected with Z axis
|
||||||
|
# @param theR Circle radius.
|
||||||
|
# @return New GEOM_Object, containing the created circle.
|
||||||
|
def MakeCircleR(self, theR):
|
||||||
|
anObj = self.CurvesOp.MakeCirclePntVecR(None, None, theR)
|
||||||
|
RaiseIfFailed("MakeCirclePntVecR", self.CurvesOp)
|
||||||
|
return anObj
|
||||||
|
|
||||||
## Create a circle, passing through three given points
|
## Create a circle, passing through three given points
|
||||||
# @param thePnt1,thePnt2,thePnt3 Points, defining the circle.
|
# @param thePnt1,thePnt2,thePnt3 Points, defining the circle.
|
||||||
# @return New GEOM_Object, containing the created circle.
|
# @return New GEOM_Object, containing the created circle.
|
||||||
@ -538,12 +548,23 @@ class geompyDC(GEOM._objref_GEOM_Gen):
|
|||||||
# @return New GEOM_Object, containing the created ellipse.
|
# @return New GEOM_Object, containing the created ellipse.
|
||||||
#
|
#
|
||||||
# @ref tui_creation_ellipse "Example"
|
# @ref tui_creation_ellipse "Example"
|
||||||
def MakeEllipse(self,thePnt, theVec, theRMajor, theRMinor):
|
def MakeEllipse(self, thePnt, theVec, theRMajor, theRMinor):
|
||||||
# Example: see GEOM_TestAll.py
|
# Example: see GEOM_TestAll.py
|
||||||
anObj = self.CurvesOp.MakeEllipse(thePnt, theVec, theRMajor, theRMinor)
|
anObj = self.CurvesOp.MakeEllipse(thePnt, theVec, theRMajor, theRMinor)
|
||||||
RaiseIfFailed("MakeEllipse", self.CurvesOp)
|
RaiseIfFailed("MakeEllipse", self.CurvesOp)
|
||||||
return anObj
|
return anObj
|
||||||
|
|
||||||
|
## Create an ellipse with given radiuses.
|
||||||
|
# Center of the ellipse will be in the origin of global
|
||||||
|
# coordinate system and normal vector will be codirected with Z axis
|
||||||
|
# @param theRMajor Major ellipse radius.
|
||||||
|
# @param theRMinor Minor ellipse radius.
|
||||||
|
# @return New GEOM_Object, containing the created ellipse.
|
||||||
|
def MakeEllipseRR(self, theRMajor, theRMinor):
|
||||||
|
anObj = self.CurvesOp.MakeEllipse(None, None, theRMajor, theRMinor)
|
||||||
|
RaiseIfFailed("MakeEllipse", self.CurvesOp)
|
||||||
|
return anObj
|
||||||
|
|
||||||
## Create a polyline on the set of points.
|
## Create a polyline on the set of points.
|
||||||
# @param thePoints Sequence of points for the polyline.
|
# @param thePoints Sequence of points for the polyline.
|
||||||
# @return New GEOM_Object, containing the created polyline.
|
# @return New GEOM_Object, containing the created polyline.
|
||||||
|
@ -152,7 +152,8 @@ void PrimitiveGUI_BoxDlg::Init()
|
|||||||
|
|
||||||
initName( tr( "GEOM_BOX" ) );
|
initName( tr( "GEOM_BOX" ) );
|
||||||
|
|
||||||
ConstructorsClicked( 0 );
|
setConstructorId( 1 ); // simplest constructor
|
||||||
|
ConstructorsClicked( 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
|
@ -164,7 +164,8 @@ void PrimitiveGUI_ConeDlg::Init()
|
|||||||
|
|
||||||
initName( tr( "GEOM_CONE" ) );
|
initName( tr( "GEOM_CONE" ) );
|
||||||
|
|
||||||
ConstructorsClicked( 0 );
|
setConstructorId( 1 ); // simplest constructor
|
||||||
|
ConstructorsClicked( 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -159,7 +159,9 @@ void PrimitiveGUI_CylinderDlg::Init()
|
|||||||
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
|
||||||
|
|
||||||
initName( tr( "GEOM_CYLINDER" ) );
|
initName( tr( "GEOM_CYLINDER" ) );
|
||||||
ConstructorsClicked( 0 );
|
|
||||||
|
setConstructorId( 1 ); // simplest constructor
|
||||||
|
ConstructorsClicked( 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -139,7 +139,8 @@ void PrimitiveGUI_SphereDlg::Init()
|
|||||||
|
|
||||||
initName( tr( "GEOM_SPHERE" ) );
|
initName( tr( "GEOM_SPHERE" ) );
|
||||||
|
|
||||||
ConstructorsClicked( 0 );
|
setConstructorId( 1 ); // simplest constructor
|
||||||
|
ConstructorsClicked( 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
|
@ -156,7 +156,8 @@ void PrimitiveGUI_TorusDlg::Init()
|
|||||||
|
|
||||||
initName( tr( "GEOM_TORUS" ) );
|
initName( tr( "GEOM_TORUS" ) );
|
||||||
|
|
||||||
ConstructorsClicked( 0 );
|
setConstructorId( 1 ); // simplest constructor
|
||||||
|
ConstructorsClicked( 1 );
|
||||||
}
|
}
|
||||||
|
|
||||||
//=================================================================================
|
//=================================================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user