]> SALOME platform Git repositories - modules/geom.git/blob - src/BasicGUI/BasicGUI_WorkingPlaneDlg.cxx
Salome HOME
0019050: EDF 521 (For GEOM/BasicGUI): Improve selection process in the dialogs
[modules/geom.git] / src / BasicGUI / BasicGUI_WorkingPlaneDlg.cxx
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : BasicGUI_WorkingPlaneDlg.cxx
23 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24 //
25
26 #include "BasicGUI_WorkingPlaneDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31
32 #include <SUIT_ResourceMgr.h>
33 #include <SUIT_Session.h>
34 #include <SalomeApp_Application.h>
35 #include <LightApp_SelectionMgr.h>
36
37 // OCCT Includes
38 #include <BRep_Tool.hxx>
39 #include <TopoDS_Edge.hxx>
40 #include <TopoDS_Vertex.hxx>
41 #include <TopExp.hxx>
42 #include <gp_Pnt.hxx>
43 #include <gp_Dir.hxx>
44 #include <TColStd_MapOfInteger.hxx>
45 #include <TopoDS_Shape.hxx>
46 #include <TColStd_IndexedMapOfInteger.hxx>
47 #include <TopTools_IndexedMapOfShape.hxx>
48
49 // QT Includes
50 #include <QCheckBox>
51
52 #include <GEOMImpl_Types.hxx>
53
54 //=================================================================================
55 // class    : BasicGUI_WorkingPlaneDlg()
56 // purpose  : Constructs a BasicGUI_WorkingPlaneDlg which is a child of 'parent', with the
57 //            name 'name' and widget flags set to 'f'.
58 //            The dialog will by default be modeless, unless you set 'modal' to
59 //            TRUE to construct a modal dialog.
60 //=================================================================================
61 BasicGUI_WorkingPlaneDlg::BasicGUI_WorkingPlaneDlg( GeometryGUI* theGeometryGUI, QWidget* parent,
62                                                     bool modal, Qt::WindowFlags fl )
63   : GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl )
64 {
65   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
66   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_WPLANE_FACE" ) ) );
67   QPixmap image2( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_WPLANE_VECTOR" ) ) );
68   QPixmap image3( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_WPLANE_ORIGIN" ) ) );
69
70   setWindowTitle( tr( "GEOM_WPLANE_TITLE" ) );
71
72   /***************************************************************/
73   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_WPLANE" ) );
74   mainFrame()->RadioButton1->setIcon( image1 );
75   mainFrame()->RadioButton2->setIcon( image2 );
76   mainFrame()->RadioButton3->setIcon( image3 );
77
78   Group1 = new DlgRef_1Sel( centralWidget() );
79
80   Group1->GroupBox1->setTitle( tr( "GEOM_WPLANE_FACE" ) );
81   Group1->TextLabel1->setText( tr( "GEOM_SELECTION" ) );
82   Group1->PushButton1->setIcon( image0 );
83   Group1->LineEdit1->setReadOnly( true );
84
85   Group2 = new DlgRef_2Sel( centralWidget() );
86
87   Group2->GroupBox1->setTitle( tr( "GEOM_WPLANE_VECTOR" ) );
88   Group2->TextLabel1->setText( tr( "GEOM_WPLANE_VX" ) );
89   Group2->TextLabel2->setText( tr( "GEOM_WPLANE_VZ" ) );
90   Group2->PushButton1->setIcon( image0 );
91   Group2->PushButton2->setIcon( image0 );
92   Group2->LineEdit1->setReadOnly( true );
93   Group2->LineEdit2->setReadOnly( true );
94   Group2->PushButton1->setDown( true );
95   Group2->LineEdit1->setEnabled( true );
96   Group2->LineEdit2->setEnabled( false );
97
98   Group3 = new DlgRef_3Check( centralWidget() );
99
100   Group3->GroupBox1->setTitle( tr( "GEOM_WPLANE_ORIGIN" ) );
101   Group3->RadioButton1->setText( tr( "GEOM_WPLANE_OXY" ) );
102   Group3->RadioButton2->setText( tr( "GEOM_WPLANE_OYZ" ) );
103   Group3->RadioButton3->setText( tr( "GEOM_WPLANE_OZX" ) );
104
105   /***************************************************************/
106   QGroupBox* aReverseGroupBox = new QGroupBox( centralWidget() );
107   QHBoxLayout* aReverseGroupBoxLayout = new QHBoxLayout( aReverseGroupBox );
108   aReverseGroupBoxLayout->setMargin( 9 );
109   aReverseGroupBoxLayout->setSpacing( 6 );
110
111   myReverseCB = new QCheckBox( aReverseGroupBox );
112   myReverseCB->setText( tr( "GEOM_REVERSE_PLANE" ) );
113   aReverseGroupBoxLayout->addWidget( myReverseCB );
114
115   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
116   layout->setMargin( 0 ); layout->setSpacing( 6 );
117   layout->addWidget( Group1 );
118   layout->addWidget( Group2 );
119   layout->addWidget( Group3 );
120   layout->addWidget( aReverseGroupBox );
121
122   setHelpFileName( "create_wplane_page.html" );
123
124   Init();
125 }
126
127 //=================================================================================
128 // function : ~BasicGUI_WorkingPlaneDlg()
129 // purpose  : Destroys the object and frees any allocated resources
130 //=================================================================================
131 BasicGUI_WorkingPlaneDlg::~BasicGUI_WorkingPlaneDlg()
132 {
133 }
134
135 //=================================================================================
136 // function : Init()
137 // purpose  :
138 //=================================================================================
139 void BasicGUI_WorkingPlaneDlg::Init()
140 {
141   /* init variables */
142   myEditCurrentArgument = Group1->LineEdit1;
143   myWPlane = myGeomGUI->GetWorkingPlane();
144
145   // myGeomGUI->SetState( 0 );
146
147   myFace  = GEOM::GEOM_Object::_nil();
148   myVectX = GEOM::GEOM_Object::_nil();
149   myVectZ = GEOM::GEOM_Object::_nil();
150
151   aOriginType = 1;
152
153   /* Filter definition */
154   globalSelection( GEOM_PLANE );
155
156    /* signals and slots connections */
157   connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) );
158   connect( myGeomGUI, SIGNAL( SignalCloseAllDialogs() ),        this, SLOT( ClickOnCancel() ) );
159
160   connect( buttonOk(),     SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
161   connect( buttonApply(),  SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
162
163   connect( this,           SIGNAL( constructorsClicked( int ) ), this, SLOT( ConstructorsClicked( int ) ) );
164
165   connect( Group1->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
166   connect( Group1->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
167   connect( Group2->LineEdit1,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
168   connect( Group2->PushButton1, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
169   connect( Group2->LineEdit2,   SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
170   connect( Group2->PushButton2, SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
171
172   connect( Group3->GroupBox1, SIGNAL( clicked( int ) ), this, SLOT( GroupClicked( int ) ) );
173
174   connect( myReverseCB, SIGNAL( clicked() ), this, SLOT( onReverse() ) );
175
176   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(),
177            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
178
179   initName( tr( "GEOM_WPLANE" ) );
180
181   setConstructorId( 2 ); // simplest constructor
182   ConstructorsClicked( 2 );
183 }
184
185 //=================================================================================
186 // function : ConstructorsClicked()
187 // purpose  : Radio button management
188 //=================================================================================
189 void BasicGUI_WorkingPlaneDlg::ConstructorsClicked( int constructorId )
190 {
191   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
192
193   disconnect( aSelMgr, 0, this, 0 );
194
195   switch ( constructorId ) {
196   case 0:
197     {
198       TColStd_MapOfInteger aMap;
199       aMap.Add( GEOM_PLANE );
200       aMap.Add( GEOM_MARKER );
201       globalSelection( aMap );
202       Group2->hide();
203       Group3->hide();
204       Group1->show();
205       Group1->PushButton1->setDown(true);
206       myEditCurrentArgument = Group1->LineEdit1;
207       Group1->LineEdit1->setText( "" );
208       myFace = GEOM::GEOM_Object::_nil();
209
210       connect( aSelMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
211       break;
212     }
213   case 1:
214     {
215       globalSelection( GEOM_LINE );
216       Group1->hide();
217       Group3->hide();
218       Group2->show();
219       myEditCurrentArgument = Group2->LineEdit1;
220       Group2->LineEdit1->setText( "" );
221       Group2->LineEdit2->setText( "" );
222       Group2->PushButton1->setDown( true );
223       Group2->PushButton2->setDown( false );
224       Group2->LineEdit1->setEnabled( true );
225       Group2->LineEdit2->setEnabled( false );
226       myVectX = GEOM::GEOM_Object::_nil();
227       myVectZ = GEOM::GEOM_Object::_nil();
228
229       connect( aSelMgr, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
230       break;
231     }
232   case 2:
233     {
234       Group1->hide();
235       Group2->hide();
236       Group3->show();
237       Group3->RadioButton1->setChecked( true );
238       aOriginType = 1;
239       break;
240     }
241   }
242
243   qApp->processEvents();
244   updateGeometry();
245   resize( minimumSize() );
246
247   updateWPlane();
248 }
249
250 //=================================================================================
251 // function : GroupClicked()
252 // purpose  : Radio button management
253 //=================================================================================
254 void BasicGUI_WorkingPlaneDlg::GroupClicked( int groupId )
255 {
256   aOriginType = groupId;
257   updateWPlane();
258 }
259
260 //=================================================================================
261 // function : ClickOnOk()
262 // purpose  :
263 //=================================================================================
264 void BasicGUI_WorkingPlaneDlg::ClickOnOk()
265 {
266   if ( ClickOnApply() )
267     ClickOnCancel();
268 }
269
270 //=================================================================================
271 // function : ClickOnApply()
272 // purpose  :
273 //=================================================================================
274 bool BasicGUI_WorkingPlaneDlg::ClickOnApply()
275 {
276   buttonApply()->setFocus();
277   myGeomGUI->application()->putInfo( "" );
278
279   if ( updateWPlane( false ) ) {
280     myGeomGUI->SetWorkingPlane( myWPlane );
281     myGeomGUI->ActiveWorkingPlane();
282   }
283
284   return true;
285 }
286
287 //=================================================================================
288 // function : SelectionIntoArgument()
289 // purpose  : Called when selection as changed or other case
290 //=================================================================================
291 void BasicGUI_WorkingPlaneDlg::SelectionIntoArgument()
292 {
293   myEditCurrentArgument->setText( "" );
294   QString aName;
295
296   const int id = getConstructorId();
297   if ( IObjectCount() != 1 ) {
298     if ( id == 0 )
299       myFace = GEOM::GEOM_Object::_nil();
300     else if ( id == 1 ) {
301       if ( myEditCurrentArgument == Group2->LineEdit1 )
302         myVectX = GEOM::GEOM_Object::_nil();
303       else if ( myEditCurrentArgument == Group2->LineEdit2 )
304         myVectZ = GEOM::GEOM_Object::_nil();
305     }
306     return;
307   }
308
309   // nbSel == 1
310   Standard_Boolean aRes = Standard_False;
311   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), aRes );
312
313   if ( !aRes || CORBA::is_nil( aSelectedObject ) )
314     return;
315
316   aName = GEOMBase::GetName(aSelectedObject);
317
318   if ( myEditCurrentArgument == Group1->LineEdit1 )
319     myFace = aSelectedObject;
320   else if ( myEditCurrentArgument == Group2->LineEdit1 ||
321             myEditCurrentArgument == Group2->LineEdit2 ) {
322     if ( aRes && !aSelectedObject->_is_nil() ) {
323       TopoDS_Shape aShape;
324       if ( GEOMBase::GetShape( aSelectedObject, aShape, TopAbs_SHAPE ) && !aShape.IsNull() ) {
325         LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
326         TColStd_IndexedMapOfInteger aMap;
327         aSelMgr->GetIndexes( firstIObject(), aMap );
328         if ( aMap.Extent() == 1 ) {
329           int anIndex = aMap( 1 );
330           aName = aName + ":edge_" + QString::number( anIndex );
331
332           GEOM::GEOM_IShapesOperations_var aShapesOp =
333             getGeomEngine()->GetIShapesOperations( getStudyId() );
334           if ( myEditCurrentArgument == Group2->LineEdit1 )
335             myVectX = aShapesOp->GetSubShape( aSelectedObject, anIndex );
336           else
337             myVectZ = aShapesOp->GetSubShape( aSelectedObject, anIndex );
338         }
339         else {
340           if ( aShape.ShapeType() != TopAbs_EDGE ) {
341             aSelectedObject = GEOM::GEOM_Object::_nil();
342             aName = "";
343           }
344         }
345         aSelMgr->clearSelected();
346       }
347     }
348   }
349
350   myEditCurrentArgument->setText( aName );
351
352   if ( myEditCurrentArgument == Group2->LineEdit1 ) {
353     myVectX = aSelectedObject;
354     if ( !myVectX->_is_nil() && myVectZ->_is_nil() )
355       Group2->PushButton2->click();
356   }
357   else {
358     myVectZ = aSelectedObject;
359     if ( !myVectZ->_is_nil() && myVectX->_is_nil() )
360       Group2->PushButton1->click();
361   }
362
363   updateWPlane();
364 }
365
366
367 //=================================================================================
368 // function : SetEditCurrentArgument()
369 // purpose  :
370 //=================================================================================
371 void BasicGUI_WorkingPlaneDlg::SetEditCurrentArgument()
372 {
373   QPushButton* send = (QPushButton*)sender();
374
375   if ( send == Group1->PushButton1 ) {
376     myEditCurrentArgument = Group1->LineEdit1;
377     globalSelection( GEOM_PLANE );
378   }
379   else if ( send == Group2->PushButton1 ) {
380     myEditCurrentArgument = Group2->LineEdit1;
381     GEOM::GEOM_Object_var anObj;
382     //    localSelection( anObj, TopAbs_EDGE );
383     globalSelection( GEOM_LINE );
384     Group2->PushButton2->setDown( false );
385     Group2->LineEdit1->setEnabled( true );
386     Group2->LineEdit2->setEnabled( false );
387   }
388   else if ( send == Group2->PushButton2 ) {
389     myEditCurrentArgument = Group2->LineEdit2;
390     GEOM::GEOM_Object_var anObj;
391     //    localSelection( anObj, TopAbs_EDGE );
392     globalSelection( GEOM_LINE );
393     Group2->PushButton1->setDown( false );
394     Group2->LineEdit1->setEnabled( false );
395     Group2->LineEdit2->setEnabled( true );
396   }
397
398   myEditCurrentArgument->setFocus();
399   //  SelectionIntoArgument();
400   send->setDown(true);
401   displayPreview();
402 }
403
404
405 //=================================================================================
406 // function : LineEditReturnPressed()
407 // purpose  :
408 //=================================================================================
409 void BasicGUI_WorkingPlaneDlg::LineEditReturnPressed()
410 {
411   QLineEdit* send = (QLineEdit*)sender();
412   if ( send == Group1->LineEdit1 || send == Group2->LineEdit1 || send == Group2->LineEdit2 ) {
413     myEditCurrentArgument = send;
414     GEOMBase_Skeleton::LineEditReturnPressed();
415   }
416 }
417
418
419 //=================================================================================
420 // function : onReverse()
421 // purpose  :
422 //=================================================================================
423 void BasicGUI_WorkingPlaneDlg::onReverse()
424 {
425   updateWPlane();
426 }
427
428
429 //=================================================================================
430 // function : ActivateThisDialog()
431 // purpose  :
432 //=================================================================================
433 void BasicGUI_WorkingPlaneDlg::ActivateThisDialog( )
434 {
435   GEOMBase_Skeleton::ActivateThisDialog();
436   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication( ) ) )->selectionMgr(),
437            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
438
439   ConstructorsClicked( getConstructorId() );
440 }
441
442
443 //=================================================================================
444 // function : DeactivateActiveDialog()
445 // purpose  : public slot to deactivate if active
446 //=================================================================================
447 void BasicGUI_WorkingPlaneDlg::DeactivateActiveDialog()
448 {
449   // myGeomGUI->SetState( -1 );
450   GEOMBase_Skeleton::DeactivateActiveDialog();
451 }
452
453 //=================================================================================
454 // function : enterEvent()
455 // purpose  :
456 //=================================================================================
457 void BasicGUI_WorkingPlaneDlg::enterEvent( QEvent* )
458 {
459   if ( !mainFrame()->GroupConstructors->isEnabled() )
460     ActivateThisDialog();
461 }
462
463 //=================================================================================
464 // function : updateWPlane
465 // purpose  :
466 //=================================================================================
467 bool BasicGUI_WorkingPlaneDlg::updateWPlane( const bool showPreview )
468 {
469   erasePreview();
470
471   const int id = getConstructorId();
472
473   if ( id == 0 ) { // by planar face selection
474     if ( CORBA::is_nil( myFace ) ) {
475       if ( !showPreview )
476         showError( "Face has to be selected" );
477       return false;
478     }
479
480     // PAL12781: set center of WPL to face's center of mass
481     // like it is done for LCS creation
482     CORBA::Double Ox, Oy, Oz,   Zx, Zy, Zz,   Xx, Xy, Xz;
483     Ox = Oy = Oz = Zx = Zy = Xy = Xz = 0.;
484     Zz = Xx = 1.;
485
486     GEOM::GEOM_IMeasureOperations_ptr aMeasureOp =
487       myGeomGUI->GetGeomGen()->GetIMeasureOperations( getStudyId() );
488     aMeasureOp->GetPosition( myFace, Ox, Oy, Oz, Zx, Zy, Zz, Xx, Xy, Xz);
489
490     if ( aMeasureOp->IsDone() ) {
491       gp_Pnt aPnt ( Ox, Oy, Oz );
492       gp_Dir aDirN ( Zx, Zy, Zz );
493       gp_Dir aDirX ( Xx, Xy, Xz );
494       myWPlane = gp_Ax3( aPnt, aDirN, aDirX );
495     }
496     else {
497       if ( !showPreview )
498         showError( "Wrong shape selected (has to be a planar face)" );
499       return false;
500     }
501   }
502   else if ( id == 1 ) { // by two vectors (Ox & Oz)
503     if ( CORBA::is_nil( myVectX ) || CORBA::is_nil( myVectZ ) ) {
504       if ( !showPreview )
505         showError( "Two vectors have to be selected" );
506       return false;
507     }
508
509     TopoDS_Edge aVectX, aVectZ;
510     TopoDS_Vertex VX1, VX2, VZ1, VZ2;
511     gp_Vec aVX, aVZ;
512
513     if ( !GEOMBase::GetShape( myVectX, aVectX, TopAbs_EDGE ) ||
514          !GEOMBase::GetShape( myVectZ, aVectZ, TopAbs_EDGE ) ) {
515       if ( !showPreview )
516         showError( "Wrong shape selected (two vectors(edges) have to be selected)" );
517       return false;
518     }
519
520     TopExp::Vertices( aVectX, VX1, VX2, Standard_True );
521     TopExp::Vertices( aVectZ, VZ1, VZ2, Standard_True );
522
523     if ( VX1.IsNull() || VX2.IsNull() ) {
524       if ( !showPreview )
525         showError( "Bad OX vector" );
526       return false;
527     }
528     if ( VZ1.IsNull() || VZ2.IsNull() ) {
529       if ( !showPreview )
530         showError( "Bad OZ vector" );
531       return false;
532     }
533
534     aVX = gp_Vec( BRep_Tool::Pnt( VX1 ), BRep_Tool::Pnt( VX2 ) );
535     aVZ = gp_Vec( BRep_Tool::Pnt( VZ1 ), BRep_Tool::Pnt( VZ2 ) );
536
537     if ( aVX.Magnitude() < Precision::Confusion() ) {
538       if ( !showPreview )
539         showError( "Bad OX vector" );
540       return false;
541     }
542     if ( aVZ.Magnitude() < Precision::Confusion() ) {
543       if ( !showPreview )
544         showError( "Bad OZ vector" );
545       return false;
546     }
547
548     gp_Dir aDirX = gp_Dir( aVX.X(), aVX.Y(), aVX.Z() );
549     gp_Dir aDirZ = gp_Dir( aVZ.X(), aVZ.Y(), aVZ.Z() );
550
551     if ( aDirX.IsParallel( aDirZ, Precision::Angular() ) ) {
552       if ( !showPreview )
553         showError( "Parallel vectors selected" );
554       return false;
555     }
556
557     myWPlane = gp_Ax3( BRep_Tool::Pnt( VX1 ), aDirZ, aDirX );
558
559   }
560   else if ( id == 2 ) { // by selection from standard (OXY or OYZ, or OZX)
561     gp_Ax2 anAx2;
562
563     if      ( aOriginType == 1 ) anAx2 = gp::XOY();
564     else if ( aOriginType == 2 ) anAx2 = gp::YOZ();
565     else if ( aOriginType == 0 ) anAx2 = gp::ZOX();
566
567     myWPlane = gp_Ax3( anAx2 );
568
569   }
570   else {
571     return false;
572   }
573
574   if ( myReverseCB->isChecked() ) {
575     myWPlane.YReverse();
576     myWPlane.ZReverse();
577   }
578
579   if ( showPreview ) {
580     GEOM::GEOM_IBasicOperations_var aBasicOp = getGeomEngine()->GetIBasicOperations( getStudyId() );
581     GEOM::GEOM_Object_var anObj = aBasicOp->MakeMarker
582       ( myWPlane.Location().X(),   myWPlane.Location().Y(),   myWPlane.Location().Z(),
583         myWPlane.XDirection().X(), myWPlane.XDirection().Y(), myWPlane.XDirection().Z(),
584         myWPlane.YDirection().X(), myWPlane.YDirection().Y(), myWPlane.YDirection().Z() );
585     displayPreview( anObj );
586   }
587
588   return true;
589 }