0026937: Eliminate NO_CXX_EXCEPTION macro support
[occt.git] / src / QABugs / QABugs_11.cxx
1 // Created on: 2002-03-20
2 // Created by: QA Admin
3 // Copyright (c) 2002-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 #include <stdio.h>
17
18 #include <QABugs.hxx>
19
20 #include <Draw.hxx>
21 #include <Draw_Interpretor.hxx>
22 #include <DBRep.hxx>
23 #include <DrawTrSurf.hxx>
24 #include <AIS_InteractiveContext.hxx>
25 #include <ViewerTest.hxx>
26 #include <AIS_Shape.hxx>
27 #include <TopoDS_Shape.hxx>
28
29 #include <Geom_Surface.hxx>
30 #include <Geom_Axis2Placement.hxx>
31 #include <gp.hxx>
32 #include <gp_Trsf.hxx>
33 #include <AIS_Trihedron.hxx>
34 #include <BRepPrimAPI_MakeBox.hxx>
35 #include <Graphic3d_MaterialAspect.hxx>
36 #include <ViewerTest_DoubleMapOfInteractiveAndName.hxx>
37 #include <TopoDS_Solid.hxx>
38 #include <BRepPrimAPI_MakeSphere.hxx>
39 #include <BRepPrimAPI_MakeCone.hxx>
40 #include <BRepPrimAPI_MakeCylinder.hxx>
41 #include <IGESToBRep_Reader.hxx>
42 #include <TopExp_Explorer.hxx>
43 #include <TopoDS.hxx>
44 #include <GCPnts_UniformDeflection.hxx>
45 #include <BRepAdaptor_Curve.hxx>
46 #include <IGESToBRep.hxx>
47 #include <V3d_Viewer.hxx>
48 #include <BRepAdaptor_CompCurve.hxx>
49 #include <GCPnts_AbscissaPoint.hxx>
50 #include <Standard_ErrorHandler.hxx>
51 #include <Standard_Overflow.hxx>
52 #include <Standard_Underflow.hxx>
53 #include <Standard_DivideByZero.hxx>
54 #include <OSD_SIGSEGV.hxx>
55 #include <OSD_Exception_ACCESS_VIOLATION.hxx>
56 #include <OSD_Exception_STACK_OVERFLOW.hxx>
57 #include <OSD.hxx>
58 #include <STEPCAFControl_Writer.hxx>
59 #include <STEPControl_StepModelType.hxx>
60 #include <Interface_Static.hxx>
61 #include <IFSelect_ReturnStatus.hxx>
62 #include <Standard_Failure.hxx>
63 #include <TColgp_HArray1OfPnt2d.hxx>
64 #include <Geom2dAPI_Interpolate.hxx>
65 #include <Geom2d_BSplineCurve.hxx>
66 #include <Geom2dConvert_BSplineCurveToBezierCurve.hxx>
67 #include <Geom2d_BezierCurve.hxx>
68 #include <BRep_Tool.hxx>
69 #include <GeomProjLib.hxx>
70 #include <Geom2dAPI_InterCurveCurve.hxx>
71 #include <IntRes2d_IntersectionSegment.hxx>
72 #include <TDataStd_RealArray.hxx>
73 #include <TDF_CopyLabel.hxx>
74 #include <NCollection_Vector.hxx>
75 #include <TColStd_Array1OfInteger.hxx>
76 #include <Geom_BSplineCurve.hxx>
77 #include <TColgp_Array1OfPnt.hxx>
78 #include <AIS_ColorScale.hxx>
79 #include <AIS_ListOfInteractive.hxx>
80 #include <AIS_ListIteratorOfListOfInteractive.hxx>
81 #include <ViewerTest_DoubleMapOfInteractiveAndName.hxx>
82 #include <ViewerTest_DoubleMapIteratorOfDoubleMapOfInteractiveAndName.hxx>
83 #include <BRepBuilderAPI_MakePolygon.hxx>
84 #include <gp_GTrsf.hxx>
85 #include <Poly_Triangulation.hxx>
86 #include <IGESControl_Reader.hxx>
87 #include <IGESData_IGESModel.hxx>
88 #include <IGESData_IGESEntity.hxx>
89 #include <V3d_View.hxx>
90 #include <BRepFeat_SplitShape.hxx>
91 #include <BRepAlgoAPI_Section.hxx>
92 #include <TColStd_PackedMapOfInteger.hxx>
93
94 #if ! defined(_WIN32)
95 extern ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS();
96 #else
97 Standard_EXPORT ViewerTest_DoubleMapOfInteractiveAndName& GetMapOfAIS();
98 #endif
99
100 static Standard_Integer  OCC128 (Draw_Interpretor& di, Standard_Integer /*argc*/, const char ** argv)
101 {
102   Handle(AIS_InteractiveContext) myAISContext = ViewerTest::GetAISContext();
103   if(myAISContext.IsNull()) {
104     di << "use 'vinit' command before " << argv[0] ;
105     return 1;
106   }
107
108   Handle(Geom_Axis2Placement) aTrihedronAxis = new Geom_Axis2Placement(gp::XOY());
109
110   gp_Trsf trsf1;
111   trsf1.SetTranslation(gp_Vec(100, 100, 0));
112   aTrihedronAxis->Transform(trsf1);
113   Handle(AIS_Trihedron) myTrihedron = new AIS_Trihedron(aTrihedronAxis);
114   myTrihedron->SetColor(Quantity_NOC_LIGHTSTEELBLUE4);
115   myTrihedron->SetSize(100);
116   myAISContext->Display(myTrihedron, Standard_True);
117
118 //  TopoDS_Shape shape1 = (TopoDS_Shape) BRepPrimAPI_MakeBox(50,50,50);
119   TopoDS_Shape shape1 = BRepPrimAPI_MakeBox(50,50,50).Shape();
120   Handle(AIS_Shape) AS = new AIS_Shape(shape1);
121   AS->SetDisplayMode(1);
122   Graphic3d_MaterialAspect mat(Graphic3d_NOM_PLASTIC);
123   AS->SetMaterial(mat);
124   AS->SetColor(Quantity_NOC_RED);
125   myAISContext->Display (AS, Standard_False);
126
127   gp_Trsf TouchTrsf;
128   TouchTrsf.SetTranslation(gp_Vec(20, 20, 0));
129
130   myAISContext->ResetLocation(AS);
131   myAISContext->SetLocation(AS , TouchTrsf) ;
132   myAISContext->Redisplay(AS, Standard_True);
133
134  return 0;
135 }
136
137   // Remove as bad version of QAAddOrRemoveSelected from QADraw
138 //static Standard_Integer OCC129 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
139 //{
140 //  if( argc != 3) {
141 //    di<<"Usage : " << argv[0] << " shape islocal\n";
142 //    return 1;
143 //  }
144 //  //get AIS_Shape:
145 //  Handle(AIS_InteractiveContext) anAISCtx = ViewerTest::GetAISContext();
146 //
147 // //   ViewerTest_DoubleMapOfInteractiveAndName& aMap =
148 // //                          ViewerTest::GetDataMapOfAIS ();
149 //  ViewerTest_DoubleMapOfInteractiveAndName& aMap = GetMapOfAIS();
150 //
151 //  TCollection_AsciiString aName(argv[1]);
152 //  Handle(AIS_InteractiveObject) AISObj;
153 //
154 //  if(aMap.IsBound2(aName)) {
155 //    AISObj = aMap.Find2(aName);
156 //    if(AISObj.IsNull()){
157 //      di<<"No interactive object \n";
158 //      return 1;
159 //    }
160 //
161 //    Standard_Integer aNum = -1;
162 //
163 //    if(Draw::Atoi(argv[2])) {
164 //      aNum = anAISCtx->OpenLocalContext();
165 //    }
166 //
167 //    if(anAISCtx->HasOpenedContext()){
168 //      anAISCtx->InitSelected();
169 //      anAISCtx->AddOrRemoveSelected(AISObj);
170 //    }
171 //    else {
172 //      anAISCtx->InitCurrent();
173 //      anAISCtx->AddOrRemoveCurrentObject(AISObj);
174 //    }
175 //
176 //    if(aNum >= 0) {
177 // //      anAISCtx->CloseLocalContext(aNum);
178 //    }
179 //
180 //    return 0;
181 //  }
182 //  //select this shape:
183 //  else {
184 //    di<<"Use 'vdisplay' before";
185 //    return 1;
186 //  }
187 //}
188
189 static Standard_Integer OCC136 (Draw_Interpretor& di, Standard_Integer argc, const char ** /*argv*/)
190 {
191   if(argc > 1){
192     di<<"Usage: OCC136\n";
193     return 1;
194   }
195
196   //create some primitives:
197   // Two basic points:
198   Standard_Real Size=100;
199   gp_Pnt P0(0,0,0), P1(Size,Size,Size);
200   //box
201   TopoDS_Solid aBox = BRepPrimAPI_MakeBox(P0,P1);
202   //sphere
203   TopoDS_Solid aSphere = BRepPrimAPI_MakeSphere (Size*0.5);
204   //cone
205   gp_Ax2 anAx2(P1, gp_Dir(1,1,1));
206   TopoDS_Solid aCone = BRepPrimAPI_MakeCone(anAx2, Size*0.7, Size*0.3, Size);
207   //cylinder
208   anAx2.SetLocation(gp_Pnt(Size,0,0));
209   anAx2.SetDirection(gp_Dir(-1,-1,1));
210   TopoDS_Solid aCyl = BRepPrimAPI_MakeCylinder(anAx2, Size*0.5, Size);
211
212   Handle(AIS_InteractiveContext) anAISCtx = ViewerTest::GetAISContext();
213   if(anAISCtx.IsNull()){
214     di<<"Null interactive context. Use 'vinit' at first.\n";
215     return 1;
216   }
217
218   anAISCtx->EraseAll (Standard_False);
219
220   //load primitives to context
221   Handle(AIS_InteractiveObject) aSh1 = new AIS_Shape(aBox);
222   anAISCtx->Display (aSh1, Standard_False);
223
224   Handle(AIS_InteractiveObject) aSh2 = new AIS_Shape(aSphere);
225   anAISCtx->Display (aSh2, Standard_False);
226
227   Handle(AIS_InteractiveObject) aSh3 = new AIS_Shape(aCone);
228   anAISCtx->Display (aSh3, Standard_False);
229
230   Handle(AIS_InteractiveObject) aSh4 = new AIS_Shape(aCyl);
231   anAISCtx->Display (aSh4, Standard_False);
232
233   //set selected
234   anAISCtx->InitSelected();
235   anAISCtx->AddOrRemoveSelected (aSh1, Standard_False);
236   anAISCtx->AddOrRemoveSelected (aSh2, Standard_False);
237   anAISCtx->AddOrRemoveSelected (aSh3, Standard_False);
238   anAISCtx->AddOrRemoveSelected (aSh4, Standard_False);
239
240   //remove all this objects from context
241   anAISCtx->Remove (aSh1, Standard_False);
242   anAISCtx->Remove (aSh2, Standard_False);
243   anAISCtx->Remove (aSh3, Standard_False);
244   anAISCtx->Remove (aSh4, Standard_False);
245
246   anAISCtx->UpdateCurrentViewer();
247   return 0;
248 }
249
250 static int BUC60610(Draw_Interpretor& di, Standard_Integer argc, const char ** argv) {
251   if(argc < 2){
252     printf("Usage: %s  iges_input [name]\n",argv[0]);
253     return(1);
254   }
255   Standard_Character *Ch = NULL;
256
257   if(argc > 2) {
258     Ch = new Standard_Character[strlen(argv[2])+3];
259   }
260   IGESToBRep_Reader IR;
261   IR.LoadFile (argv[1]);
262   IR.Clear();
263   IR.TransferRoots();
264   TopoDS_Shape aTopShape = IR.OneShape();
265   TopExp_Explorer ex(aTopShape, TopAbs_EDGE);
266   Standard_Integer i=0;
267   for( ; ex.More(); ex.Next()){
268     const TopoDS_Edge &E = TopoDS::Edge(ex.Current());
269     BRepAdaptor_Curve aCurve(E);
270     GCPnts_UniformDeflection plin(aCurve, 0.1);
271     di << "Num points = " << plin.NbPoints() << "\n";
272     if(argc > 2) {
273       i++;
274       Sprintf(Ch,"%s_%i",argv[2],1);
275       DBRep::Set(Ch,E);
276     }
277   }
278   return (1);
279 }
280
281 //====================================================
282 //
283 // Following code is inserted from
284 // /dn03/KAS/dev/QAopt/src/QADraw/QADraw_TOPOLOGY.cxx
285 // ( 75455 Apr 16 18:59)
286 //
287 //====================================================
288
289 //OCC105
290 #include <BRepTools_WireExplorer.hxx>
291 #include <BRep_Tool.hxx>
292 #include <GCPnts_UniformAbscissa.hxx>
293 #include <TopExp.hxx>
294
295 //
296 // usage : OCC105 shape
297 //
298 // comments:
299 //GCPnts_UniformAbscissa returns bad end point foe first edge. Its value is
300
301 //Value Pnt = -338.556216693211 -394.465571897208 0
302 //should be
303 //Value Pnt = -307.47165394 -340.18073533 0
304
305 static int OCC105(Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
306 {
307   if (argc != 2){
308     di<<"Usage : OCC105 shape\n";
309     return 1;
310   }
311 //  TopoDS_Wire myTopoDSWire = TopoDS::Wire(DBRep::Get("aa.brep"));
312   TopoDS_Wire myTopoDSWire = TopoDS::Wire(DBRep::Get(argv[1]));
313   Standard_Real l = 0.5; //Draw::Atof(argv[2]);
314   // Find the first vertex of the wire
315   BRepTools_WireExplorer wire_exp(myTopoDSWire);
316   TopoDS_Vertex vlast;
317   {
318     TopoDS_Vertex vw1, vw2;
319     TopExp::Vertices(myTopoDSWire,vw1,vw2);
320     TopoDS_Vertex ve1, ve2;
321     TopoDS_Edge edge = TopoDS::Edge(wire_exp.Current());
322     TopExp::Vertices(edge,ve1,ve2);
323     if (vw1.IsSame(ve1) || vw1.IsSame(ve2))
324       vlast = vw1;
325     else {
326 //      assert(vw2.IsSame(ve1) || vw2.IsSame(ve2));
327       vlast = vw2;
328     }
329   }
330   for ( ; wire_exp.More(); wire_exp.Next())
331     {
332       di << "\n\n New Edge \n"   << "\n";
333       Standard_Real newufirst, newulast;
334       TopoDS_Edge edge = TopoDS::Edge(wire_exp.Current());
335       Standard_Real ufirst, ulast;
336       Handle(Geom_Curve) acurve;
337       TopoDS_Vertex ve1, ve2;
338       TopExp::Vertices(edge,ve1,ve2);
339       if (ve1.IsSame(vlast))
340         {
341           acurve = BRep_Tool::Curve(edge, ufirst, ulast);
342           newufirst = ufirst;
343           newulast  = ulast;
344           vlast = ve2;
345         }
346       else
347         {
348 //          assert(ve2.IsSame(vlast));
349 //          assert ( wire_exp.Orientation( ) == TopAbs_REVERSED );
350           acurve = BRep_Tool::Curve( edge, ufirst, ulast );
351           newufirst = acurve->ReversedParameter( ufirst );
352           newulast  = acurve->ReversedParameter( ulast );
353           acurve = acurve->Reversed( );
354           vlast = ve1;
355         }
356
357       GeomAdaptor_Curve   curve;
358       GCPnts_UniformAbscissa  algo;
359       curve.Load(acurve);
360       algo.Initialize( curve, l, newufirst, newulast );
361       if (!algo.IsDone())
362         di << "Not Done!!!"   << "\n";
363       for (Standard_Integer Index = 1; Index<=algo.NbPoints();Index++) {
364         Standard_Real t = algo.Parameter(Index);
365         gp_Pnt      pt3 = curve.Value(t);
366         di << "Parameter t = " << t   << "\n";
367         di << "Value Pnt = " << pt3.X()<<" " <<pt3.Y()<<" " << pt3.Z()  << "\n";
368       }
369     }
370   return 0;
371
372 }
373
374 #include <TColStd_SequenceOfTransient.hxx>
375 #include <GeomFill_Pipe.hxx>
376 static int pipe_OCC9 (Draw_Interpretor& di,
377                       Standard_Integer n, const char ** a)
378 {
379   if (n < 6) {
380     di << "Usage: " << a[0] << " result path cur1 cur2 radius [tolerance]\n";
381     return 1;
382   }
383
384   TColStd_SequenceOfTransient aCurveSeq;
385   Standard_Integer i;
386   for (i=2 ; i<=4; i++) {
387     Handle(Geom_Curve) aC = Handle(Geom_Curve)::DownCast( DrawTrSurf::Get(a[i]) );
388     if (aC.IsNull()) {
389       di << a[i] << " is not a curve\n";
390       return 1;
391     }
392     aCurveSeq.Append(aC);
393   }
394
395   GeomFill_Pipe aPipe(Handle(Geom_Curve)::DownCast( aCurveSeq(1) ),
396                       Handle(Geom_Curve)::DownCast( aCurveSeq(2) ),
397                       Handle(Geom_Curve)::DownCast( aCurveSeq(3) ),
398                       Draw::Atof (a[5]) );
399
400   if (n == 7) {
401     aPipe.Perform(Draw::Atof (a[6]), Standard_True);
402   } else {
403     aPipe.Perform(Standard_True/*, Standard_True*/);
404   }
405
406   if (!aPipe.IsDone()) {
407     di << "GeomFill_Pipe cannot make a surface\n";
408     return 1;
409   }
410
411   Handle(Geom_Surface) aSurf = aPipe.Surface();
412
413   DrawTrSurf::Set(a[1], aSurf);
414   return 0;
415 }
416
417 //======================================================================
418 // OCC125
419 // usage : OCC125 shell
420 //======================================================================
421 #include <ShapeFix_Shell.hxx>
422
423 Standard_Integer  OCC125(Draw_Interpretor& di ,
424                          Standard_Integer n,
425                          const char ** a)
426 {
427   if (n!=2) {
428     di<<" Use OCC125 shell";
429     return 1;
430   }
431
432   TopoDS_Shape S = DBRep::Get(a[1]);
433
434   if (S.IsNull()) {
435     di<<" Null shape is not allowed";
436     return 1;
437   }
438
439   TopAbs_ShapeEnum aT;
440   aT=S.ShapeType();
441   if (aT!=TopAbs_SHELL) {
442     di<<" Shape Type must be SHELL";
443     return 1;
444   }
445
446   const TopoDS_Shell& aShell = TopoDS::Shell(S);
447   //
448   Standard_Boolean isAccountMultiConex, bNonManifold, bResult;
449
450   isAccountMultiConex=Standard_True;
451   bNonManifold=Standard_False;
452
453   Handle (ShapeFix_Shell) aFix = new ShapeFix_Shell(aShell);
454   bResult=aFix->FixFaceOrientation(aShell, isAccountMultiConex, bNonManifold);
455
456   di<<"bResult="<<(Standard_Integer)bResult;
457
458   TopoDS_Shape aShape;
459   aShape=aFix->Shape();
460
461   TCollection_AsciiString aName(a[1]), aDef("_sh"), aRName;
462   aRName=aName;
463   aRName=aRName+aDef;
464   DBRep::Set (aRName.ToCString(), aShape);
465   di<<aRName.ToCString();
466   //
467   return 0;
468 }
469
470 #include <BRepLib_FindSurface.hxx>
471 #include <BRepBuilderAPI_MakeFace.hxx>
472 Standard_Integer  OCC157(Draw_Interpretor& di,
473                          Standard_Integer n,
474                          const char ** a)
475 //static Standard_Integer findplanarsurface(Draw_Interpretor&, Standard_Integer n, const char ** a)
476 {
477   if (n<3) {
478     di << "bad number of arguments\n";
479     return 1;
480   }
481
482   // try to read a shape:
483   TopoDS_Shape inputShape=DBRep::Get(a[2]);
484   if (inputShape.IsNull() || inputShape.ShapeType() != TopAbs_WIRE) {
485     di << "Invalid input shape\n";
486     return 1;
487   }
488   Standard_Real toler = Draw::Atof(a[3]);
489   TopoDS_Wire aWire = TopoDS::Wire(inputShape);
490   BRepLib_FindSurface FS(aWire, toler, Standard_True);
491   if(FS.Found()) {
492     di<<"OCC157: OK; Planar surface is found\n";
493     Handle(Geom_Surface) aSurf = FS.Surface();
494     BRepBuilderAPI_MakeFace aMakeFace(aSurf,aWire,Standard_True);
495     if(aMakeFace.IsDone()) {
496       TopoDS_Face aFace = aMakeFace.Face();
497       DBRep::Set(a[1],aFace);
498     }
499   }
500   else di<<"OCC157: ERROR; Planar surface is not found with toler = "<<toler <<"\n";
501   return 0;
502
503 }
504
505 // #include <MyCommandsCMD.h>
506 #include <ShapeFix_Shape.hxx>
507 #include <BRepOffset_MakeOffset.hxx>
508 #include <BRepOffsetAPI_MakeOffset.hxx>
509 #include <BRepOffset_Mode.hxx>
510 #include <GeomAbs_JoinType.hxx>
511 #include <AIS_Shape.hxx>
512
513 #include <BRepTools.hxx>
514
515 Standard_Integer  OCC165(Draw_Interpretor& di ,
516                          Standard_Integer n,
517                          const char ** a)
518
519
520 //=======================================================================
521
522 // static int YOffset (Draw_Interpretor& di, Standard_Integer argc, const char ** argv);
523
524 // void MyOffsets_Commands(Draw_Interpretor& theCommands)
525 // {
526 //      theCommands.Add("yoffset" , "yoffset" , __FILE__, YOffset, " Offset on Z Direction");
527 // }
528
529 //=======================================================================
530
531 // static int YOffset (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
532  {
533    if (n > 2)
534      {
535        di <<"Usage : " << a[0] << " [file]\n";
536        return 1;
537      }
538         di.Eval ("axo");
539
540 #define _OFFSET_TELCO_
541 #ifdef _OFFSET_TELCO_
542
543         Standard_CString file = a[1];
544
545         BRep_Builder aBuilder;
546         TopoDS_Shape theShape;
547         //BRepTools::Read(theShape, Standard_CString("/dn02/users_SUN/inv/3/OCC165/2d_tr_line.brep"), aBuilder);
548         BRepTools::Read(theShape, file, aBuilder);
549         DBRep::Set("shape", theShape);
550
551         TopoDS_Wire theWire = TopoDS::Wire(theShape);
552
553         Standard_Real anOffset = 1.5;
554
555 #else
556
557         Standard_Real xA = 0.0, xB = 200.0, xC = 200.0, xD = 0.0,
558                 yA = 0.0, yB = 0.0, yC = 200.0, yD = 200.0,
559                 zA = 0.0, zB = 0.0, zC = 0.0, zD = 0.0;
560
561         BRepBuilderAPI_MakePolygon theSquare;
562         TopoDS_Vertex theA = BRepBuilderAPI_MakeVertex(gp_Pnt(xA, yA, zA));
563         theSquare.Add(theA);
564         TopoDS_Vertex theB = BRepBuilderAPI_MakeVertex(gp_Pnt(xB, yB, zB));
565         theSquare.Add(theB);
566         TopoDS_Vertex theC = BRepBuilderAPI_MakeVertex(gp_Pnt(xC, yC, zC));
567         theSquare.Add(theC);
568         TopoDS_Vertex theD = BRepBuilderAPI_MakeVertex(gp_Pnt(xD, yD, zD));
569         theSquare.Add(theD);
570
571         theSquare.Close();
572         TopoDS_Wire theWire = theSquare.Wire();
573
574         Standard_Real anOffset = 10;
575
576
577 #endif /* _OFFSET_TELCO_ */
578
579
580         TopoDS_Face theFace = BRepBuilderAPI_MakeFace(theWire).Face();
581         DBRep::Set("face", theFace);
582
583
584         Standard_Real anAlt = 0.;
585         GeomAbs_JoinType theJoin = GeomAbs_Intersection;
586 //GeomAbs_Intersection; //GeomAbs_Arc;
587         BRepOffsetAPI_MakeOffset aMakeOffset(theFace, theJoin);
588         aMakeOffset.AddWire(theWire);
589
590         aMakeOffset.Perform(anOffset, anAlt);
591
592         TopoDS_Shape theOffsetShapePos = aMakeOffset.Shape();
593         DBRep::Set("offset", theOffsetShapePos);
594         return 0;
595 //      return TCL_OK;
596 }
597
598 #include<BRepAlgoAPI_Cut.hxx>
599 #include<BRepAlgo_Cut.hxx>
600
601 #include<BRepPrimAPI_MakeHalfSpace.hxx>
602 #include<Geom_CartesianPoint.hxx>
603 #include<AIS_Point.hxx>
604
605 #include <BRepBuilderAPI_MakeEdge.hxx>
606 #include <BRepBuilderAPI_MakeWire.hxx>
607 #include <BRepBuilderAPI_MakeFace.hxx>
608
609 static Standard_Integer OCC297 (Draw_Interpretor& di,Standard_Integer /*argc*/, const char ** argv )
610
611 {
612
613   Handle(AIS_InteractiveContext) myAISContext = ViewerTest::GetAISContext();
614   if(myAISContext.IsNull()) {
615     di << "use 'vinit' command before " << argv[0] << "\n";
616     return -1;
617   }
618
619
620     gp_Pnt pt1_(250.,250.,0.);
621     gp_Pnt pt2_(-250.,250.,0.);
622     gp_Pnt pt3_(-250.,-250.,0.);
623     gp_Pnt pt4_(250.,-250.,0.);
624     BRepBuilderAPI_MakeEdge edg1_(pt1_, pt2_);
625     BRepBuilderAPI_MakeEdge edg2_(pt2_, pt3_);
626     BRepBuilderAPI_MakeEdge edg3_(pt3_, pt4_);
627     BRepBuilderAPI_MakeEdge edg4_(pt4_, pt1_);
628
629     BRepBuilderAPI_MakeWire wire_(edg1_, edg2_, edg3_, edg4_);
630     BRepBuilderAPI_MakeFace face_(wire_);
631     TopoDS_Face sh_ = face_.Face();
632
633     int up = 1;
634
635     gp_Pnt g_pnt;
636     if(up)
637         g_pnt = gp_Pnt(0,0,-100);
638     else
639           g_pnt = gp_Pnt(0,0,100);
640
641     myAISContext->EraseAll(Standard_False);
642         Handle(Geom_CartesianPoint) GEOMPoint = new Geom_CartesianPoint(g_pnt);
643         Handle(AIS_Point) AISPoint = new AIS_Point(GEOMPoint);
644     myAISContext->Display (AISPoint, Standard_True);
645
646     BRepPrimAPI_MakeHalfSpace half_(sh_, g_pnt);
647     TopoDS_Solid sol1_ = half_.Solid();
648 //         Handle(AIS_Shape) AISHalf = new AIS_Shape(sol1_);
649 //         AISHalf->SetColor(Quantity_NOC_GREEN);
650 //     myAISContext->Display(AISHalf);
651
652   DBRep::Set("Face",sol1_);
653
654     gp_Ax1 ax1_(gp_Pnt(0., 0., -100.), gp_Dir(0., 0., 1.));
655
656     Standard_Real x=0., y=0., z=-80.;
657
658     BRepPrimAPI_MakeBox box(gp_Pnt(x,y,z),gp_Pnt(x+150,y+200,z+200));
659 //         Handle(AIS_Shape) AISBox = new AIS_Shape(box);
660 //         AISBox->SetColor(Quantity_NOC_BLUE1);
661 //     myAISContext->Display(AISBox);
662
663  DBRep::Set("Box",box.Shape());
664
665 //     BRepAlgoAPI_Cut cut( sol1_, box.Shape() );
666 //         //BRepAlgoAPI_Cut cut(  box.Shape(), sol1_ );
667 //     TopoDS_Shape sh1_ = cut.Shape();
668 //         Handle(AIS_Shape) AISCut = new AIS_Shape(sh1_);
669 //         AISCut->SetColor(Quantity_NOC_RED);
670 //     myAISContext->Display(AISCut);
671
672 //  DBRep::Set("Cut",sh1_);
673
674   return 0;
675
676 }
677 #include<GProp_GProps.hxx>
678 #include<BRepGProp.hxx>
679
680 static Standard_Integer OCC305 (Draw_Interpretor& di,Standard_Integer argc, const char ** argv )
681
682 {
683   if (argc != 2)
684   {
685     di <<"Usage : " << argv[0] << " file\n";
686     return 1;
687   }
688   Standard_CString file = argv[1];
689
690   Handle(AIS_InteractiveContext) myAISContext = ViewerTest::GetAISContext();
691   if(myAISContext.IsNull()) {
692     di << "use 'vinit' command before " << argv[0] << "\n";
693     return -1;
694   }
695
696 TopoDS_Shape sh;
697 BRep_Builder builder;
698 //BRepTools::Read(sh, "/dn02/users_SUN/inv/3/OCC305/testc.brep", builder);
699 BRepTools::Read(sh, file, builder);
700
701 TopoDS_Wire wire;
702 builder.MakeWire(wire);
703 TopoDS_Edge ed;
704 TopoDS_Vertex vt1, vt2;
705 TopExp_Explorer wex(sh, TopAbs_EDGE);
706 for(;wex.More();wex.Next())
707 {
708     ed = TopoDS::Edge(wex.Current());
709     TopExp::Vertices(ed, vt1, vt2);
710     builder.UpdateVertex(vt1, 0.01);
711     builder.UpdateVertex(vt2, 0.01);
712     builder.UpdateEdge(ed, 0.01);
713     builder.Add(wire, ed);
714
715
716     GProp_GProps lprop;
717     BRepGProp::LinearProperties(ed, lprop);
718     printf("\n length = %f", lprop.Mass());
719 }
720  DBRep::Set("Wire",wire);
721 // Handle(AIS_Shape) res = new AIS_Shape( wire );
722 // aContext->SetColor( res, Quantity_NOC_RED );
723 // aContext->Display( res );
724
725 // BRepOffsetAPI_MakeOffset off(wire, GeomAbs_Arc);
726 // off.Perform(0.5, 0);
727
728 // printf("\n IsDone = %d", off.IsDone());
729 // sh = off.Shape();
730 // res = new AIS_Shape( sh );
731 // aContext->SetColor( res, Quantity_NOC_GREEN );
732 // aContext->Display( res );
733
734   return 0;
735
736 }
737
738 static Standard_Integer OCC166 (Draw_Interpretor& di, Standard_Integer /*argc*/, const char ** argv)
739 {
740
741   Handle(AIS_InteractiveContext) myAISContext = ViewerTest::GetAISContext();
742   if(myAISContext.IsNull()) {
743     di << "use 'vinit' command before " << argv[0];
744     return 1;
745   }
746
747   BRepPrimAPI_MakeBox aBox(gp_Pnt(0, 0, 0), 100, 100, 100);
748   Handle(AIS_Shape) anAISBox = new AIS_Shape(aBox.Shape());
749   myAISContext->SetAutoActivateSelection (Standard_False);
750   myAISContext->Display(anAISBox, 1);
751
752   TColStd_ListOfInteger anActivatedModes;
753   myAISContext->ActivatedModes (anAISBox, anActivatedModes);
754   if(anActivatedModes.Extent() != 1 || anActivatedModes.First() != -1 )
755     return 1;
756
757   return 0;
758 }
759
760 #include <TDocStd_Document.hxx>
761 #include <DDocStd.hxx>
762 #include <PCDM_StoreStatus.hxx>
763 #include <TDocStd_Application.hxx>
764
765 static Standard_Integer OCC381_Save (Draw_Interpretor& di, Standard_Integer nb, const char ** a)
766 {
767   if (nb != 2) {
768     di << "Usage: " << a[0] << " Doc\n";
769     return 1;
770   }
771
772   Handle(TDocStd_Document) D;
773   if (!DDocStd::GetDocument(a[1],D)) return 1;
774
775   Handle(TDocStd_Application) A = DDocStd::GetApplication();
776
777   TCollection_ExtendedString theStatusMessage;
778   if (!D->IsSaved()) {
779     di << "this document has never been saved\n";
780     return 0;
781   }
782   PCDM_StoreStatus theStatus = A->Save(D, theStatusMessage);
783   if (theStatus != PCDM_SS_OK ) {
784     switch ( theStatus ) {
785       case PCDM_SS_DriverFailure: {
786         di << "Error saving document: Could not store , no driver found to make it\n";
787         break ;
788       }
789       case PCDM_SS_WriteFailure: {
790         di << "Error saving document: Write access failure\n";
791         break;
792       }
793       case PCDM_SS_Failure: {
794         di << "Error saving document: Write failure\n" ;
795         break;
796       }
797       case PCDM_SS_Doc_IsNull: {
798         di << "Error saving document: No document to save\n";
799         break ;
800       }
801       case PCDM_SS_No_Obj: {
802         di << "Error saving document: No objects written\n";
803         break;
804       }
805       case PCDM_SS_Info_Section_Error: {
806         di << "Error saving document: Write info section failure\n" ;
807         break;
808       }
809       default:
810           break;
811     }
812     return 1;
813   }
814   return 0;
815 }
816
817 static Standard_Integer OCC381_SaveAs (Draw_Interpretor& di, Standard_Integer nb, const char ** a)
818 {
819   if (nb != 3) {
820     di << "Usage: " << a[0] << " Doc Path\n";
821     return 1;
822   }
823
824   Handle(TDocStd_Document) D;
825   if (!DDocStd::GetDocument(a[1],D)) return 1;
826
827   TCollection_ExtendedString path (a[2]);
828   Handle(TDocStd_Application) A = DDocStd::GetApplication();
829
830   TCollection_ExtendedString theStatusMessage;
831   PCDM_StoreStatus theStatus = A->SaveAs(D,path, theStatusMessage);
832   if (theStatus != PCDM_SS_OK ) {
833     switch ( theStatus ) {
834       case PCDM_SS_DriverFailure: {
835         di << "Error saving document: Could not store , no driver found to make it\n";
836         break ;
837       }
838       case PCDM_SS_WriteFailure: {
839         di << "Error saving document: Write access failure\n";
840         break;
841       }
842       case PCDM_SS_Failure: {
843         di << "Error saving document: Write failure\n" ;
844         break;
845       }
846       case PCDM_SS_Doc_IsNull: {
847         di << "Error saving document: No document to save\n";
848         break ;
849       }
850       case PCDM_SS_No_Obj: {
851         di << "Error saving document: No objects written\n";
852         break;
853       }
854       case PCDM_SS_Info_Section_Error: {
855         di << "Error saving document: Write info section failure\n" ;
856         break;
857       }
858       default:
859           break;
860     }
861     return 1;
862   }
863
864   return 0;
865 }
866
867 #include <BRepClass3d_SolidClassifier.hxx>
868
869 Standard_Integer OCC299bug (Draw_Interpretor& theDi,
870                             Standard_Integer  theArgNb,
871                             const char**      theArgVec)
872 {
873   if (theArgNb < 3)
874   {
875     theDi << "Usage : " << theArgVec[0] << " Solid Point [Tolerance=1.e-7]\n";
876     return -1;
877   }
878
879   TopoDS_Shape aS = DBRep::Get (theArgVec[1]);
880   if (aS.IsNull())
881   {
882     theDi << " Null Shape is not allowed here\n";
883     return 1;
884   }
885   else if (aS.ShapeType() != TopAbs_SOLID)
886   {
887     theDi << " Shape type must be SOLID\n";
888     return 1;
889   }
890
891   gp_Pnt aP (8., 9., 10.);
892   if (!DrawTrSurf::GetPoint (theArgVec[2], aP))
893   {
894     theDi << " Null Point is not allowed here\n";
895     return 1;
896   }
897   const Standard_Real aTol = (theArgNb == 4) ? Draw::Atof (theArgVec[3]) : 1.e-7;
898
899   BRepClass3d_SolidClassifier aSC (aS);
900   aSC.Perform (aP, aTol);
901
902   switch (aSC.State())
903   {
904     case TopAbs_IN:      theDi << "The point is IN shape\n";      return 0;
905     case TopAbs_OUT:     theDi << "The point is OUT of shape\n";  return 0;
906     case TopAbs_ON:      theDi << "The point is ON shape\n";      return 0;
907     case TopAbs_UNKNOWN:
908     default:             theDi << "The point is UNKNOWN shape\n"; return 0;
909   }
910 }
911
912 #include <OSD_Process.hxx>
913 #include <OSD_Path.hxx>
914
915 static Standard_Integer OCC309bug (Draw_Interpretor& di, Standard_Integer nb, const char ** a)
916 {
917   if (nb != 1) {
918     di << "Usage: " << a[0] << "\n";
919     return 1;
920   }
921   OSD_Process p;
922   OSD_Path d = p.CurrentDirectory();
923   TCollection_AsciiString s;
924   d.SystemName(s);
925   di << "*" <<  s.ToCString() << "*\n";
926   d.UpTrek();
927   d.SystemName(s);
928   di <<  "*" <<  s.ToCString() <<  "*\n";
929   return 0;
930 }
931
932 static Standard_Integer OCC310bug (Draw_Interpretor& di, Standard_Integer nb, const char ** a)
933 {
934   if (nb != 1) {
935     di << "Usage: " << a[0] << "\n";
936     return 1;
937   }
938   OSD_Path p("/where/you/want/tmp/qwerty/tmp/");
939   di << p.Trek().ToCString() << "\n";
940   p.UpTrek();
941   di << p.Trek().ToCString() << "\n";
942   return 0;
943 }
944
945 #include <BRepAlgoAPI_Fuse.hxx>
946 #include <BRepAlgoAPI_Common.hxx>
947 #include <BRepAlgo_Fuse.hxx>
948 #include <BRepAlgo_Common.hxx>
949
950 static Standard_Integer OCC277bug (Draw_Interpretor& di, Standard_Integer nb, const char ** a)
951 {
952   //if (nb != 1) {
953   //  cout << "Usage: " << a[0] << endl;
954   //  return 1;
955   //}
956   if(nb < 1 || nb > 2) {
957     di << "Usage : " << a[0] << " [BRepAlgoAPI/BRepAlgo = 1/0]\n";
958     return 1;
959   }
960   Standard_Boolean IsBRepAlgoAPI = Standard_True;
961   if (nb == 2) {
962     Standard_Integer IsB = Draw::Atoi(a[1]);
963     if (IsB != 1) {
964       IsBRepAlgoAPI = Standard_False;
965     }
966   }
967
968   BRepPrimAPI_MakeBox box1( 100, 100, 100 );
969   BRepPrimAPI_MakeBox box2( gp_Pnt( 50, 50,50 ), 200, 200, 200 );
970
971   TopoDS_Shape shape1 = box1.Shape();
972   TopoDS_Shape shape2 = box2.Shape();
973
974 //#if ! defined(BRepAlgoAPI_def01)
975 //  TopoDS_Shape fuse = BRepAlgoAPI_Fuse( shape1, shape2 );
976 //  TopoDS_Shape comm = BRepAlgoAPI_Common( shape1, shape2 );
977 //#else
978 //  TopoDS_Shape fuse = BRepAlgo_Fuse( shape1, shape2 );
979 //  TopoDS_Shape comm = BRepAlgo_Common( shape1, shape2 );
980 //#endif
981   TopoDS_Shape fuse,comm;
982   if (IsBRepAlgoAPI) {
983     di << "fuse = BRepAlgoAPI_Fuse( shape1, shape2 )\n";
984     di << "comm = BRepAlgoAPI_Common( shape1, shape2 )\n";
985     fuse = BRepAlgoAPI_Fuse( shape1, shape2 );
986     comm = BRepAlgoAPI_Common( shape1, shape2 );
987   } else {
988     di << "fuse = BRepAlgo_Fuse( shape1, shape2 )\n";
989     fuse = BRepAlgo_Fuse( shape1, shape2 );
990     di << "comm = BRepAlgo_Common( shape1, shape2 )\n";
991     comm = BRepAlgo_Common( shape1, shape2 );
992   }
993
994   return 0;
995 }
996
997 #include <ShapeAnalysis_Edge.hxx>
998
999 static Standard_Integer OCC333bug (Draw_Interpretor& di, Standard_Integer n, const char ** a)
1000 {
1001   if( n < 3) {
1002     di<<"-1\n";
1003     di << "Usage: " << a[0] << " edge1 edge2 [toler domaindist]\n";
1004     return 1;
1005   }
1006   TopoDS_Shape Sh1 = DBRep::Get(a[1]);
1007   TopoDS_Shape Sh2 = DBRep::Get(a[2]);
1008   if(Sh1.IsNull() || Sh2.IsNull()) {
1009     di<<"-2\n";
1010     di<<"Invalid arguments\n";
1011     return 1;
1012   }
1013   TopoDS_Edge e1 = TopoDS::Edge(Sh1);
1014   TopoDS_Edge e2 = TopoDS::Edge(Sh2);
1015   if(e1.IsNull() || e2.IsNull()) {
1016     di<<"-3\n";
1017     di<<"Invalid type of arguments\n";
1018     return 1;
1019   }
1020   Standard_Real aTol = Precision::Confusion();
1021   Standard_Real aDistDomain = 0.0;
1022   Standard_Integer k = 3;
1023   if(k < n)
1024     aTol = Draw::Atof(a[k++]);
1025   if(k < n)
1026     aDistDomain = Draw::Atof(a[k++]);
1027
1028   ShapeAnalysis_Edge sae;
1029   if(sae.CheckOverlapping(e1,e2,aTol,aDistDomain)) {
1030     if(aDistDomain ==0.0) {
1031       di<<"1\n";
1032       di<<"Edges is overlaping comletly\n";
1033     } else {
1034       di<<"2\n";
1035       di<<"Edges is overlaped\n";
1036       di<<"with tolerance = "<<aTol<<"\n";
1037       di<<"on segment length = "<<aDistDomain<<"\n";
1038     }
1039   } else {
1040     di<<"3\n";
1041     di<<"Edges is not overlaped\n";
1042   }
1043   return 0;
1044 }
1045
1046
1047 #include <DDocStd_DrawDocument.hxx>
1048 #include <TDataStd_Name.hxx>
1049 #include <Draw.hxx>
1050 #include <XCAFDoc_ShapeTool.hxx>
1051 #include <XCAFDoc_DocumentTool.hxx>
1052 #include <TDF_LabelSequence.hxx>
1053 #include <TPrsStd_AISPresentation.hxx>
1054 #include <TDF_Data.hxx>
1055 #include <TDF_Label.hxx>
1056 #include <XCAFPrs_Driver.hxx>
1057
1058 //------------------------------------------------------------------------------------------
1059 // name    : OCC363
1060 // Purpose :
1061 //------------------------------------------------------------------------------------------
1062 static Standard_Integer OCC363 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1063 {
1064   try
1065   {
1066     OCC_CATCH_SIGNALS
1067     // 1. Verufy amount of arguments
1068     if(argc < 3) { di <<"Error OCC363 : Use : OCC363 document filename\n"; return 1; }
1069
1070     // 2. Retrieve DDocStd application
1071     Handle(TDocStd_Application) App = DDocStd::GetApplication();
1072
1073     // 3. Open document
1074     TCollection_ExtendedString name(argv[2]);
1075     Handle(TDocStd_Document) Doc;
1076     if(App->Open(name, Doc) != PCDM_RS_OK) { di << "Error OCC363 : document was not opened successfully\n"; return 1;}
1077     Handle(DDocStd_DrawDocument) DD = new DDocStd_DrawDocument(Doc);
1078     TDataStd_Name::Set(Doc->GetData()->Root(),argv[1]);
1079     Draw::Set(argv[1],DD);
1080
1081     // 4. Create prsentations
1082     Handle(XCAFDoc_ShapeTool) shapes = XCAFDoc_DocumentTool::ShapeTool(Doc->Main());
1083     TDF_LabelSequence seq;
1084     shapes->GetFreeShapes ( seq );
1085     Handle(TPrsStd_AISPresentation) prs;
1086     for ( Standard_Integer i=1; i <= seq.Length(); i++ )
1087       if ( ! seq.Value(i).FindAttribute ( TPrsStd_AISPresentation::GetID(), prs ) )
1088         prs = TPrsStd_AISPresentation::Set(seq.Value(i),XCAFPrs_Driver::GetID());
1089   }
1090   catch(Standard_Failure) { di << "FAULTY OCC363 : Exception during reading document.\n";return 0;}
1091
1092   di << "OCC363 OK\n";
1093   return 0;
1094 }
1095
1096 // Must use OCC299
1097 ////======================================================================================
1098 //// Function : OCC372
1099 //// Purpose  :
1100 ////======================================================================================
1101 //static Standard_Integer OCC372 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1102 //{
1103 //  try
1104 //  {
1105 //    OCC_CATCH_SIGNALS
1106 //    // 1. Verufy amount of arguments
1107 //    if(argc < 2) {di << "OCC372 FAULTY. Use : OCC372 brep-file";return 0;}
1108 //
1109 //    // 2. Read solid
1110 //    BRep_Builder B;
1111 //    TopoDS_Shape Ref;
1112 //    BRepTools::Read(Ref, argv[1], B);
1113 //
1114 //    // 3. Calculate location of aP3d in relation to the solid
1115 //    gp_Pnt aP3d(6311.4862583184, -2841.3092756034, 16.461053497188);
1116 //    BRepClass3d_SolidClassifier SC(Ref);
1117 //    SC.Perform(aP3d, 1e-7);
1118 //
1119 //    // 4. Check returned state. The point must be inside the solid.
1120 //    TopAbs_State aState=SC.State();
1121 //    switch (aState)
1122 //    {
1123 //    case TopAbs_OUT:
1124 //      di<<"OCC372 FAULTY. aState = TopAbs_OUT";
1125 //      return 0;
1126 //    case TopAbs_ON:
1127 //      di<<"OCC372 FAULTY. aState = TopAbs_ON";
1128 //     return 0;
1129 //    case TopAbs_IN:
1130 //      di<<"OCC372 OK. aState = TopAbs_IN" ;
1131 //      return 0;
1132 //    default:
1133 //      di<<"OCC372 FAULTY. aState = UNKNOWN";
1134 //      return 0;
1135 //    }
1136 //  }
1137 //  catch (Standard_Failure) { di<<"OCC372 FAULTY. Exception raised"; }
1138 //
1139 //  return 0;
1140 //}
1141
1142 #include <BRepTopAdaptor_FClass2d.hxx>
1143
1144 //======================================================================================
1145 // Function : OCC377
1146 // Purpose  :
1147 //======================================================================================
1148 static Standard_Integer OCC377 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1149 {
1150   try
1151   {
1152     OCC_CATCH_SIGNALS
1153     // 1. Verify validity of arguments
1154     if ( argc < 1 ) {di << "Error OCC377. Use  OCC377 file x y precuv \n";return 0;}
1155
1156     // 2. Initialize parameters
1157     gp_Pnt2d p2d;
1158     p2d.SetX ( Draw::Atof(argv[2]) );
1159     p2d.SetY ( Draw::Atof(argv[3]) );
1160     Standard_Real precuv = Draw::Atof (argv[4] );
1161
1162     // 3. Read shape
1163     BRep_Builder B;
1164     TopoDS_Shape Shape;
1165     BRepTools::Read ( Shape, argv[1], B );
1166
1167     // 4. Verify whether enrtry point is on wire and reversed ones (indeed results of veridying must be same)
1168     TopExp_Explorer exp;
1169     Standard_Integer i=1;
1170     for (exp.Init(Shape.Oriented(TopAbs_FORWARD),TopAbs_WIRE); exp.More(); exp.Next(), i++)
1171     {
1172       // 4.1. Verify whether enrtry point is on wire
1173       const TopoDS_Wire& wir = TopoDS::Wire(exp.Current());
1174       TopoDS_Face newFace = TopoDS::Face(Shape.EmptyCopied());
1175
1176       TopAbs_Orientation orWire = wir.Orientation();
1177       newFace.Orientation(TopAbs_FORWARD);
1178       B.Add(newFace,wir);
1179
1180       BRepTopAdaptor_FClass2d FClass2d1(newFace,precuv);
1181       TopAbs_State stat1 = FClass2d1.PerformInfinitePoint();
1182       //di << "Wire " << i << ": Infinite point is " <<
1183       //  ( stat1 == TopAbs_IN ? "IN" : stat1 == TopAbs_OUT ? "OUT" : stat1 == TopAbs_ON ? "ON" : "UNKNOWN" ) << "\n";
1184
1185       TCollection_AsciiString TmpString;
1186       stat1 == TopAbs_IN ? TmpString.AssignCat("IN") : stat1 == TopAbs_OUT ? TmpString.AssignCat("OUT") : stat1 == TopAbs_ON ? TmpString.AssignCat("ON") : TmpString.AssignCat("UNKNOWN");
1187       di << "Wire " << i << ": Infinite point is " << TmpString.ToCString() << "\n";
1188
1189       stat1 = FClass2d1.Perform(p2d);
1190       //di << "Wire " << i << ": point ( " << p2d.X() << ", " << p2d.Y() << " ) is " <<
1191       //  ( stat1 == TopAbs_IN ? "IN" : stat1 == TopAbs_OUT ? "OUT" : stat1 == TopAbs_ON ? "ON" : "UNKNOWN" ) << "\n";
1192
1193       TmpString.Clear();
1194       stat1 == TopAbs_IN ? TmpString.AssignCat("IN") : stat1 == TopAbs_OUT ? TmpString.AssignCat("OUT") : stat1 == TopAbs_ON ? TmpString.AssignCat("ON") : TmpString.AssignCat("UNKNOWN");
1195       di << "Wire " << i << ": point ( " << p2d.X() << ", " << p2d.Y() << " ) is " << TmpString.ToCString() << "\n";
1196
1197       // 4.2. Verify whether enrtry point is on reversed wire
1198       newFace = TopoDS::Face(Shape.EmptyCopied());
1199       newFace.Orientation(TopAbs_FORWARD);
1200       orWire = TopAbs::Reverse(orWire);
1201       B.Add(newFace,wir.Oriented(orWire));
1202       BRepTopAdaptor_FClass2d FClass2d2(newFace,precuv);
1203       TopAbs_State stat2 = FClass2d2.PerformInfinitePoint();
1204       //di << "Reversed Wire " << i << ": Infinite point is " <<
1205       //  ( stat2 == TopAbs_IN ? "IN" : stat2 == TopAbs_OUT ? "OUT" : stat2 == TopAbs_ON ? "ON" : "UNKNOWN" ) << "\n";
1206
1207       TmpString.Clear();
1208       stat2 == TopAbs_IN ? TmpString.AssignCat("IN") : stat2 == TopAbs_OUT ? TmpString.AssignCat("OUT") : stat2 == TopAbs_ON ? TmpString.AssignCat("ON") : TmpString.AssignCat("UNKNOWN");
1209       di << "Reversed Wire " << i << ": Infinite point is " << TmpString.ToCString() << "\n";
1210
1211       stat2 = FClass2d2.Perform(p2d);
1212       //di << "Reversed Wire " << i << ": point ( " << p2d.X() << ", " << p2d.Y() << " ) is " <<
1213       //  ( stat2 == TopAbs_IN ? "IN" : stat2 == TopAbs_OUT ? "OUT" : stat2 == TopAbs_ON ? "ON" : "UNKNOWN" ) << "\n";
1214
1215       TmpString.Clear();
1216       stat2 == TopAbs_IN ? TmpString.AssignCat("IN") : stat2 == TopAbs_OUT ? TmpString.AssignCat("OUT") : stat2 == TopAbs_ON ? TmpString.AssignCat("ON") : TmpString.AssignCat("UNKNOWN");
1217       di << "Reversed Wire " << i << ": point ( " << p2d.X() << ", " << p2d.Y() << " ) is " << TmpString.ToCString() << "\n";
1218
1219       // 4.3. Compare results (they must be same)
1220       if(stat1 ==stat2) di << "OCC377 OK\n";
1221       else {di << "OCC377 FAULTY\n"; return 0;}
1222     }
1223   }
1224   catch(Standard_Failure)
1225   {
1226     di << "OCC377 Exception";
1227   }
1228
1229   return 0;
1230 }
1231
1232 #include <ShapeUpgrade_ShapeDivideAngle.hxx>
1233 #include <ShapeBuild_ReShape.hxx>
1234
1235 //=======================================================================
1236 //function : OCC22
1237 //purpose  :
1238 //=======================================================================
1239 static Standard_Integer OCC22 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1240 {
1241   try
1242   {
1243     OCC_CATCH_SIGNALS
1244     // 1. Verify arguments of the command
1245     if (argc < 5) { di << "OCC22 FAULTY. Use : OCC22 Result Shape CompoundOfSubshapesToBeDivided ConsiderLocation"; return 0;}
1246
1247     Standard_Boolean aConsiderLocation;
1248     if(strcmp(argv[4], "0")==0) aConsiderLocation = Standard_False;
1249     else aConsiderLocation = Standard_True;
1250
1251     // 2. Iniitialize aShapeUpgrade
1252     ShapeUpgrade_ShapeDivideAngle aShapeUpgrade(M_PI/2.);
1253     // precision
1254     aShapeUpgrade.SetPrecision (Precision::Confusion());
1255     // tolerance
1256     aShapeUpgrade.SetMaxTolerance(0.1);
1257     // subshapes to be divided
1258     TopoDS_Shape aSubShapesToBeDivided = DBRep::Get(argv[3]);
1259     if(aSubShapesToBeDivided.IsNull()) {di << "OCC22 FAULTY. Compound of subshapes to be divided is not exist. Please, verify input values. \n";return 0;}
1260     aShapeUpgrade.Init(aSubShapesToBeDivided);
1261     // context
1262     Handle(ShapeBuild_ReShape) aReshape = new ShapeBuild_ReShape;
1263     aShapeUpgrade.SetContext(aReshape);
1264     if(aConsiderLocation) aReshape->ModeConsiderLocation() = Standard_True;
1265
1266     // 3. Perform splitting
1267     if (aShapeUpgrade.Perform (Standard_False))         di << "Upgrade_SplitRevolution_Done \n";
1268     else if (aShapeUpgrade.Status (ShapeExtend_OK))     di << "Upgrade_SplitRevolution_OK \n";
1269     else if (aShapeUpgrade.Status (ShapeExtend_FAIL)) { di << "OCC22 FAULTY. Operation failed. Angle was not divided\n";return 0;}
1270
1271     // 4. Perform rebuilding shape
1272     // 4.1. Retrieve Shape
1273     TopoDS_Shape anInitShape = DBRep::Get(argv[2]);
1274     if(anInitShape.IsNull()) { di << "OCC22 FAULTY. Initial shape is not exist. Please verify input values \n"; return 0;}
1275     // 4.2 Rebuid retrieved shape
1276     TopoDS_Shape aResultShape = aReshape->Apply(anInitShape);
1277     // 4.3. Create result Draw shape
1278     DBRep::Set(argv[1], aResultShape);
1279   }
1280   catch (Standard_Failure) {di << "OCC22 Exception \n" ;return 0;}
1281
1282   return 0;
1283 }
1284
1285
1286 #include <ShapeProcess_OperLibrary.hxx>
1287 #include <ShapeProcess_ShapeContext.hxx>
1288 #include <ShapeProcess.hxx>
1289
1290 #include <TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx>
1291 #include <BRepMesh_IncrementalMesh.hxx>
1292
1293 //=======================================================================
1294 //function : OCC24
1295 //purpose  :
1296 //=======================================================================
1297 static Standard_Integer OCC24 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1298 {
1299   try
1300   {
1301     OCC_CATCH_SIGNALS
1302     // 1. Verify amount of arguments of the command
1303     if (argc < 6) { di << "OCC24 FAULTY. Use : OCC22 Result Shape CompoundOfSubshapes ResourceFileName SequenceName"; return 0;}
1304
1305     // 2. Retrieve parameters
1306     // initial shape
1307     TopoDS_Shape anInitShape = DBRep::Get(argv[2]);
1308     if(anInitShape.IsNull()) { di << "OCC24 FAULTY. Initial shape is not exist. Please verify input values \n"; return 0;}
1309     // compound of subshapes
1310     TopoDS_Shape aSubShapes = DBRep::Get(argv[3]);
1311     if(aSubShapes.IsNull()) {di << "OCC24 FAULTY. Compound of subshapes is not exist. Please, verify input values. \n";return 0;}
1312     // name of resource file
1313     const char* aResourceFile = argv[4];
1314     // name of sequence from resource file to be executed
1315     const char* aSequenceName = argv[5];
1316
1317     // 3. Initialize ShapeContext and perform sequence of operation specified with resource file
1318     ShapeProcess_OperLibrary::Init();
1319     Handle(ShapeProcess_ShapeContext) aShapeContext = new ShapeProcess_ShapeContext (aSubShapes, aResourceFile);
1320     aShapeContext->SetDetalisation (TopAbs_EDGE);
1321     ShapeProcess::Perform (aShapeContext, aSequenceName);
1322
1323     // 4. Rebuild initil shape in accordance with performed operation
1324     Handle(ShapeBuild_ReShape) aReshape = new ShapeBuild_ReShape;
1325     TopTools_DataMapIteratorOfDataMapOfShapeShape anIter (aShapeContext->Map());
1326     for (; anIter.More(); anIter.Next())
1327       aReshape->Replace(anIter.Key(), anIter.Value());
1328     TopoDS_Shape aResultShape = aReshape->Apply(anInitShape);
1329
1330     // 5 Create resultant Draw shape
1331     DBRep::Set(argv[1], aResultShape);
1332
1333   }
1334   catch (Standard_Failure) {di << "OCC24 Exception \n" ;return 0;}
1335
1336   return 0;
1337 }
1338
1339 //=======================================================================
1340 //function : OCC369
1341 //purpose  : Verify whether exception occurs during building mesh
1342 //=======================================================================
1343 static Standard_Integer OCC369(Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1344 {
1345   try
1346   {
1347     OCC_CATCH_SIGNALS
1348     // 1. Verify amount of arguments of the command
1349     if (argc < 2) { di << "OCC369 FAULTY. Use : OCC369 Shape \n"; return 0;}
1350
1351     // 2. Retrieve shape
1352     TopoDS_Shape aShape = DBRep::Get(argv[1]);
1353     if(aShape.IsNull()) {di << "OCC369 FAULTY. Entry shape is NULL \n"; return 0;}
1354
1355     // 3. Build mesh
1356     BRepMesh_FastDiscret::Parameters aMeshParams;
1357     aMeshParams.Relative = Standard_True;
1358     aMeshParams.Deflection = 0.2;
1359     aMeshParams.Angle = M_PI / 6;
1360     BRepMesh_IncrementalMesh aMesh(aShape, aMeshParams);
1361
1362   }
1363   catch (Standard_Failure) {di << "OCC369 Exception \n" ;return 0;}
1364
1365   di << "OCC369 OK \n";
1366   return 0;
1367 }
1368
1369 #include <math_Vector.hxx>
1370 #include <math_Matrix.hxx>
1371 static Standard_Integer OCC524 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1372 {
1373   if(argc != 9){
1374     di<<"Usage : " << argv[0] << " LowerVector UpperVector InitialValueVector LowerRowMatrix UpperRowMatrix LowerColMatrix UpperColMatrix InitialValueMatrix\n";
1375     return 1;
1376   }
1377   Standard_Integer LowerVector = Draw::Atoi(argv[1]);
1378   Standard_Integer UpperVector = Draw::Atoi(argv[2]);
1379   Standard_Real InitialValueVector = Draw::Atof(argv[3]);
1380   Standard_Integer LowerRowMatrix = Draw::Atoi(argv[4]);
1381   Standard_Integer UpperRowMatrix = Draw::Atoi(argv[5]);
1382   Standard_Integer LowerColMatrix = Draw::Atoi(argv[6]);
1383   Standard_Integer UpperColMatrix = Draw::Atoi(argv[7]);
1384   Standard_Real InitialValueMatrix = Draw::Atof(argv[8]);
1385
1386   math_Vector Vector1(LowerVector, UpperVector);
1387   math_Vector Vector2(LowerVector, UpperVector);
1388
1389   math_Vector Vector(LowerVector, UpperVector, InitialValueVector);
1390   math_Matrix Matrix(LowerRowMatrix, UpperRowMatrix, LowerColMatrix, UpperColMatrix, InitialValueMatrix);
1391
1392   //Vector.Dump(cout);
1393   //cout<<endl;
1394
1395   //Matrix.Dump(cout);
1396   //cout<<endl;
1397
1398   Vector1.Multiply(Vector, Matrix);
1399
1400   //Vector1.Dump(cout);
1401   Standard_SStream aSStream1;
1402   Vector1.Dump(aSStream1);
1403   di << aSStream1;
1404   di<<"\n";
1405
1406   if (Matrix.RowNumber() > 1) {
1407     Matrix(Matrix.LowerRow() + 1, Matrix.LowerCol()) += 1.;
1408   }
1409   Vector2.TMultiply(Vector, Matrix);
1410
1411   //Vector2.Dump(cout);
1412   Standard_SStream aSStream2;
1413   Vector2.Dump(aSStream2);
1414   di << aSStream2;
1415   di<<"\n";
1416
1417   return 0;
1418 }
1419
1420 #include <GeomPlate_BuildPlateSurface.hxx>
1421 //=======================================================================
1422 //function : OCC525
1423 //purpose  :
1424 //=======================================================================
1425 static Standard_Integer OCC525(Draw_Interpretor& di, Standard_Integer /*argc*/, const char ** /*argv*/)
1426 {
1427   GeomPlate_BuildPlateSurface aBuilder;
1428   aBuilder.Perform();
1429
1430   if (aBuilder.IsDone())
1431   {
1432     di << "Error in OCC525. Null result is expected.\n";
1433   }
1434   else
1435   {
1436     di << "OCC525 OK \n";
1437   }
1438
1439   return 0;
1440 }
1441
1442 #include <BRepPrimAPI_MakeWedge.hxx>
1443 #include <gce_MakeRotation.hxx>
1444 #include <gce_MakeTranslation.hxx>
1445 #include <BRepBuilderAPI_Transform.hxx>
1446 #include <BRepPrimAPI_MakeWedge.hxx>
1447 #include <BRepAlgoAPI_Fuse.hxx>
1448 #include <BRepAlgoAPI_Cut.hxx>
1449 #include <BRepAlgo_Fuse.hxx>
1450 #include <BRepAlgo_Cut.hxx>
1451 //=======================================================================
1452 //function :  OCC578
1453 //purpose  :
1454 //=======================================================================
1455 static Standard_Integer OCC578 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1456 {
1457   //if (argc!=4) {
1458   //  di<<"Usage : " << argv[0] << " shape1 shape2 shape3\n";
1459   //  return 1;
1460   //}
1461   if(argc < 4 || argc > 5) {
1462     di << "Usage : " << argv[0] << " shape1 shape2 shape3 [BRepAlgoAPI/BRepAlgo = 1/0]\n";
1463     return 1;
1464   }
1465   Standard_Boolean IsBRepAlgoAPI = Standard_True;
1466   if (argc == 5) {
1467     Standard_Integer IsB = Draw::Atoi(argv[4]);
1468     if (IsB != 1) {
1469       IsBRepAlgoAPI = Standard_False;
1470 //      di << "Error: There is not BRepAlgo_Fuse class\n";
1471 //      return 1;
1472 //      di << "Error: There is not BRepAlgo_Cut class\n";
1473 //      return 1;
1474     }
1475   }
1476
1477   gp_Pnt P0(0,0,0.0);
1478   double xperiod = 1.0;
1479   double yperiod = 1.0;
1480   double sub_thick = 0.5;
1481
1482   // mask_substrate
1483   //TopoDS_Shape substrate = BRepPrimAPI_MakeBox( P0, xperiod, yperiod, sub_thick );
1484   TopoDS_Shape substrate = BRepPrimAPI_MakeBox( P0, xperiod, yperiod, sub_thick ).Shape();
1485
1486   // --------------------------------------------------------------------
1487
1488   // wedge
1489   //TopoDS_Shape wedge1 = BRepPrimAPI_MakeWedge(0.5, 0.05, 0.5,
1490         //                                    0.1,  0.1  , 0.4, 0.4 );
1491   TopoDS_Shape wedge1 = BRepPrimAPI_MakeWedge(0.5, 0.05, 0.5,
1492                                               0.1,  0.1  , 0.4, 0.4 ).Shape();
1493
1494   gp_Trsf rotate = gce_MakeRotation ( gp_Pnt(0.0,0.0,0.0),
1495                                      gp_Dir(1.0,0.0,0.0),
1496                                      1.570795 );
1497
1498   gp_Trsf translate = gce_MakeTranslation(gp_Pnt( 0.0, -0.5, 0.0),
1499                                           gp_Pnt( 0.25, 0.25, 0.5)
1500                                           );
1501
1502   rotate.PreMultiply( translate );
1503
1504   TopoDS_Shape wedge1a = BRepBuilderAPI_Transform( wedge1, rotate );
1505
1506   if (wedge1a.IsNull()) {
1507     di<<" Null shape1 is not allowed\n";
1508     return 1;
1509   }
1510   DBRep::Set(argv[1], wedge1a);
1511
1512   // --------------------------------------------------------------------
1513
1514   // wedge top
1515   //TopoDS_Shape wedge2 = BRepPrimAPI_MakeWedge(0.5, 0.3, 0.5,
1516         //                                    0.1,  0.1  , 0.4, 0.4 );
1517   TopoDS_Shape wedge2 = BRepPrimAPI_MakeWedge(0.5, 0.3, 0.5,
1518                                               0.1,  0.1  , 0.4, 0.4 ).Shape();
1519
1520   gp_Trsf rotate2 = gce_MakeRotation ( gp_Pnt(0.0,0.0,0.0),
1521                                       gp_Dir(1.0,0.0,0.0),
1522                                       1.570795 * 3.0 );
1523
1524   gp_Trsf translate2 = gce_MakeTranslation(gp_Pnt( 0.0, 0.0, 0.0),
1525                                            gp_Pnt( 0.25, 0.25, 0.5)
1526                                            );
1527
1528   rotate2.PreMultiply( translate2 );
1529
1530   TopoDS_Shape wedge2a = BRepBuilderAPI_Transform( wedge2, rotate2 );
1531
1532   if (wedge2a.IsNull()) {
1533     di<<" Null shape2 is not allowed\n";
1534     return 1;
1535   }
1536   DBRep::Set(argv[2], wedge2a);
1537
1538
1539   // combine wedges
1540 //#if ! defined(BRepAlgoAPI_def01)
1541 //  TopoDS_Shape wedge_common = BRepAlgoAPI_Fuse(wedge1a , wedge2a);
1542 //#else
1543 //  TopoDS_Shape wedge_common = BRepAlgo_Fuse(wedge1a , wedge2a);
1544 //#endif
1545   TopoDS_Shape wedge_common;
1546   if (IsBRepAlgoAPI) {
1547     di << "wedge_common = BRepAlgoAPI_Fuse(wedge1a , wedge2a)\n";
1548     wedge_common = BRepAlgoAPI_Fuse(wedge1a , wedge2a);
1549   } else {
1550     di << "wedge_common = BRepAlgo_Fuse(wedge1a , wedge2a)\n";
1551     wedge_common = BRepAlgo_Fuse(wedge1a , wedge2a);
1552   }
1553
1554   // remove wedge area from substrate
1555 //#if ! defined(BRepAlgoAPI_def01)
1556 //  TopoDS_Shape sub_etch1 = BRepAlgoAPI_Cut(substrate, wedge_common);
1557 //#else
1558 //  TopoDS_Shape sub_etch1 = BRepAlgo_Cut(substrate, wedge_common);
1559 //#endif
1560   TopoDS_Shape sub_etch1;
1561   if (IsBRepAlgoAPI) {
1562     di << "sub_etch1 = BRepAlgoAPI_Cut(substrate, wedge_common)\n";
1563     sub_etch1 = BRepAlgoAPI_Cut(substrate, wedge_common);
1564   } else {
1565     di << "sub_etch1 = BRepAlgo_Cut(substrate, wedge_common)\n";
1566     sub_etch1 = BRepAlgo_Cut(substrate, wedge_common);
1567   }
1568
1569   if (sub_etch1.IsNull()) {
1570     di<<" Null shape3 is not allowed\n";
1571     return 1;
1572   }
1573   DBRep::Set(argv[3], sub_etch1);
1574
1575   return 0;
1576 }
1577
1578 #include <Standard_GUID.hxx>
1579 //=======================================================================
1580 //function :  OCC669
1581 //purpose  :
1582 //=======================================================================
1583 static Standard_Integer OCC669 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1584 {
1585   if(argc != 2){
1586     di<<"Usage : " << argv[0] << " GUID\n";
1587     return -1;
1588   }
1589   Standard_GUID guid(argv[1]);
1590   //guid.ShallowDump(cout);
1591   Standard_SStream aSStream;
1592   guid.ShallowDump(aSStream);
1593   di << aSStream;
1594   di<<"\n";
1595   return 0;
1596 }
1597
1598 #include <XCAFDoc.hxx>
1599 //=======================================================================
1600 //function :  OCC738_ShapeRef
1601 //purpose  :
1602 //=======================================================================
1603 static Standard_Integer OCC738_ShapeRef (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1604 {
1605   if(argc != 1){
1606     di<<"Usage : " << argv[0] << "\n";
1607     return -1;
1608   }
1609   const Standard_GUID& guid = XCAFDoc::ShapeRefGUID ();
1610   //guid.ShallowDump(cout);
1611   Standard_SStream aSStream;
1612   guid.ShallowDump(aSStream);
1613   di << aSStream;
1614   return 0;
1615 }
1616
1617 //=======================================================================
1618 //function :  OCC738_Assembly
1619 //purpose  : 
1620 //=======================================================================
1621 static Standard_Integer OCC738_Assembly (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1622 {
1623   if(argc != 1){
1624     di<<"Usage : " << argv[0] << "\n";
1625     return -1;
1626   }
1627   const Standard_GUID& guid = XCAFDoc::AssemblyGUID ();
1628   //guid.ShallowDump(cout);
1629   Standard_SStream aSStream;
1630   guid.ShallowDump(aSStream);
1631   di << aSStream;
1632   return 0;
1633 }
1634
1635 #if defined(DDataStd_def01)
1636 #include <DDataStd_DrawPresentation.hxx>
1637 //=======================================================================
1638 //function :  OCC739_DrawPresentation
1639 //purpose  : 
1640 //=======================================================================
1641 static Standard_Integer OCC739_DrawPresentation (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1642 {
1643   if(argc != 1){
1644     di<<"Usage : " << argv[0] << "\n";
1645     return -1;
1646   }
1647   const Standard_GUID& guid = DDataStd_DrawPresentation::GetID() ;
1648   //guid.ShallowDump(cout);
1649   Standard_SStream aSStream;
1650   guid.ShallowDump(aSStream);
1651   di << aSStream;
1652   return 0;
1653 }
1654 #endif
1655
1656 //=======================================================================
1657 //function :  OCC708
1658 //purpose  : 
1659 //=======================================================================
1660 static Standard_Integer OCC708 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1661 {
1662   Handle(AIS_InteractiveContext) aContext = ViewerTest::GetAISContext();
1663   if(aContext.IsNull()) { 
1664     di << argv[0] << "ERROR : use 'vinit' command before \n";
1665     return 1;
1666   }
1667
1668   if ( argc != 2) {
1669     di << "ERROR : Usage : " << argv[0] << " shape ; Deactivate the current transformation\n";
1670     return 1;
1671   }
1672   
1673   Standard_Boolean updateviewer = Standard_True;
1674
1675   ViewerTest_DoubleMapOfInteractiveAndName& aMap = GetMapOfAIS();
1676   
1677   TCollection_AsciiString aName(argv[1]);
1678   Handle(AIS_InteractiveObject) AISObj;
1679
1680   if(!aMap.IsBound2(aName)) {
1681     di << "Use 'vdisplay' before\n";
1682     return 1;
1683   } else {
1684     AISObj = Handle(AIS_InteractiveObject)::DownCast(aMap.Find2(aName));
1685     if(AISObj.IsNull()){
1686       di << argv[1] << " : No interactive object\n";
1687       return 1;
1688     } 
1689     AISObj->ResetTransformation();
1690
1691     aContext->Erase(AISObj, updateviewer);
1692     aContext->UpdateCurrentViewer();
1693     aContext->Display(AISObj, updateviewer);
1694     aContext->UpdateCurrentViewer();
1695   }
1696   return 0;
1697 }
1698
1699 //=======================================================================
1700 //function :  OCC670
1701 //purpose  :
1702 //=======================================================================
1703 #include <TColStd_Array2OfInteger.hxx>
1704 static Standard_Integer OCC670 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1705 {
1706   if(argc != 1){
1707     di<<"Usage : " << argv[0] << "\n";
1708     return -1;
1709   }
1710
1711   // check that exception initialized without message string can be safely handled and printed
1712   try {
1713     throw Standard_OutOfRange();
1714   }
1715   catch (Standard_Failure const& anException) {
1716     std::cout << "Caught successfully: ";
1717     std::cout << anException << endl;
1718   }
1719   return 0;
1720 }
1721
1722 #include <GeomAPI_ProjectPointOnSurf.hxx>
1723 //=======================================================================
1724 //function :  OCC867
1725 //purpose  : 
1726 //=======================================================================
1727 static Standard_Integer OCC867(Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1728 {
1729   if (argc!=7)  
1730   {
1731     di<<"Usage : " << argv[0] << " Point Surface Umin Usup Vmin Vsup \n";
1732     return 1;   
1733   }
1734   
1735   gp_Pnt aPoint3d;        
1736   DrawTrSurf::GetPoint(argv[1],aPoint3d);
1737   Handle (Geom_Surface) aSurface=DrawTrSurf::GetSurface(argv[2]);
1738   Standard_Real             Umin=Draw::Atof(argv[3]);
1739   Standard_Real             Usup=Draw::Atof(argv[4]);
1740   Standard_Real             Vmin=Draw::Atof(argv[5]);
1741   Standard_Real             Vsup=Draw::Atof(argv[6]);
1742  
1743   if (aSurface.IsNull()) {
1744     di << argv[2] << " Null surface \n" ;
1745     return 1;
1746   }
1747   
1748   GeomAPI_ProjectPointOnSurf PonSurf;
1749   PonSurf.Init(aSurface, Umin, Usup, Vmin, Vsup);
1750   PonSurf.Perform(aPoint3d);
1751
1752   return 0; 
1753 }
1754
1755 //=======================================================================
1756 //function :  OCC909
1757 //purpose  : 
1758 //=======================================================================
1759 static Standard_Integer OCC909 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1760 {
1761   if (argc!=3)  
1762   {
1763     di<<"Usage : " << argv[0] << " wire face\n";
1764     return 1;   
1765   }
1766   
1767   TopoDS_Wire awire = TopoDS::Wire(DBRep::Get(argv[1])); //read the wire
1768   TopoDS_Face aface = TopoDS::Face(DBRep::Get(argv[2])); //read the face
1769   if (awire.IsNull() || aface.IsNull()) {
1770     di << "Null object\n";
1771     return 1;
1772   }
1773
1774   Standard_Integer count = 0;
1775   TopExp_Explorer TE(awire, TopAbs_VERTEX);
1776   if ( TE.More()) {
1777     BRepTools_WireExplorer WE;
1778     for ( WE.Init(awire,aface); WE.More(); WE.Next()) {
1779       TopoDS_Edge E = WE.Current();
1780       count++;
1781     }
1782   }
1783   di << "Count = " << count << "\n";
1784
1785   return 0; 
1786 }
1787
1788 //=======================================================================
1789 //function :  OCC921
1790 //purpose  : 
1791 //=======================================================================
1792 static Standard_Integer OCC921 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1793 {
1794   if (argc != 2)
1795   {
1796     di <<"Usage : " << argv[0] << " face\n";
1797     return 1;
1798   }
1799   Standard_Real u1, u2, v1, v2;
1800   TopoDS_Face F = TopoDS::Face( DBRep::Get(argv[1]) ); //read the shape
1801   if (F.IsNull())
1802     return 1;
1803   BRepTools::UVBounds(F, u1, u2, v1, v2);
1804   di << "Bounds: " << u1 << "   " << u2 << "   " << v1 << "   " << v2 << "\n";
1805   return 0;
1806 }
1807
1808 #include <Expr_NamedUnknown.hxx>
1809 #include <Expr_GeneralExpression.hxx>
1810 #include <Expr_Exponential.hxx>
1811 //=======================================================================
1812 //function :  OCC902
1813 //purpose  : 
1814 //=======================================================================
1815 static Standard_Integer OCC902(Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
1816 {
1817   if (argc != 2)
1818   {
1819     di <<"Usage : " << argv[0] << " expression\n";
1820     return 1;
1821   }
1822
1823  TCollection_AsciiString  myStr(argv[1]);
1824
1825  Handle (Expr_NamedUnknown)      myNamed = new Expr_NamedUnknown(myStr);
1826  Handle (Expr_Exponential)       oldExpr = new Expr_Exponential(myNamed); 
1827  Handle (Expr_GeneralExpression) newExpr = oldExpr->Derivative(myNamed);
1828
1829  
1830  TCollection_AsciiString  res        = newExpr->String();
1831  Standard_CString         resStr     = res.ToCString();
1832  TCollection_AsciiString  res_old    = oldExpr->String();
1833  Standard_CString         res_oldStr = res_old.ToCString();
1834  
1835
1836  di << "X = " << argv[1] << "\n";
1837  di << "Y = " << res_oldStr << "\n";
1838  di << "Y' = " << resStr  << "\n";
1839
1840  return 0;
1841 }
1842
1843 #include <DDF.hxx>
1844 #include <TPrsStd_AISViewer.hxx>
1845 #include <TDF_Label.hxx>
1846 #include <TPrsStd_AISPresentation.hxx>
1847 //=======================================================================
1848 //function : OCC1029_AISTransparency 
1849 //purpose  : OCC1029_AISTransparency  (DOC,entry,[real])
1850 //=======================================================================
1851
1852 static Standard_Integer OCC1029_AISTransparency (Draw_Interpretor& di,
1853                                              Standard_Integer nb, 
1854                                              const char ** arg) 
1855 {
1856   if (nb >= 3 ) {     
1857     Handle(TDocStd_Document) D;
1858     if (!DDocStd::GetDocument(arg[1],D)) return 1;  
1859     TDF_Label L;
1860     if (!DDF::FindLabel(D->GetData(),arg[2],L)) return 1;  
1861
1862     Handle(TPrsStd_AISViewer) viewer;
1863     if( !TPrsStd_AISViewer::Find(L, viewer) ) return 1;  
1864
1865     Handle(TPrsStd_AISPresentation) prs;
1866     if(L.FindAttribute( TPrsStd_AISPresentation::GetID(), prs) ) {   
1867       if( nb == 4 ) {
1868         prs->SetTransparency(Draw::Atof(arg[3]));
1869         TPrsStd_AISViewer::Update(L);
1870       }
1871       else {
1872          di << "Transparency = " << prs->Transparency() << "\n";
1873       }
1874       return 0;
1875     }
1876   }
1877   di << arg[0] << " : Error\n";
1878   return 1;
1879 }
1880
1881 //=======================================================================
1882 //function : OCC1030_AISColor 
1883 //purpose  : OCC1030_AISColor (DOC,entry,[color])
1884 //=======================================================================
1885
1886 static Standard_Integer OCC1030_AISColor (Draw_Interpretor& di,
1887                                       Standard_Integer nb, 
1888                                       const char ** arg) 
1889 {
1890   if (nb >= 3) {     
1891     Handle(TDocStd_Document) D;
1892     if (!DDocStd::GetDocument(arg[1],D)) return 1;  
1893     TDF_Label L;
1894     if (!DDF::FindLabel(D->GetData(),arg[2],L)) return 1;  
1895
1896     Handle(TPrsStd_AISViewer) viewer;
1897     if( !TPrsStd_AISViewer::Find(L, viewer) ) return 1;  
1898
1899     Handle(TPrsStd_AISPresentation) prs;
1900     if(L.FindAttribute( TPrsStd_AISPresentation::GetID(), prs) ) {   
1901       if( nb == 4 ) {
1902         prs->SetColor((Quantity_NameOfColor)Draw::Atoi(arg[3]));
1903         TPrsStd_AISViewer::Update(L);
1904       }
1905       else
1906          di << "Color = " << prs->Color() << "\n";
1907       return 0; 
1908     }
1909   }
1910   di << arg[0] << " : Error\n";
1911   return 1;
1912 }
1913
1914 //=======================================================================
1915 //function : OCC1031_AISMaterial
1916 //purpose  : OCC1031_AISMaterial (DOC,entry,[material])
1917 //=======================================================================
1918
1919 static Standard_Integer OCC1031_AISMaterial (Draw_Interpretor& di,
1920                                          Standard_Integer nb,
1921                                          const char ** arg)
1922 {
1923   if (nb >= 3) {     
1924     Handle(TDocStd_Document) D;
1925     if (!DDocStd::GetDocument(arg[1],D)) return 1;  
1926     TDF_Label L;
1927     if (!DDF::FindLabel(D->GetData(),arg[2],L)) return 1;  
1928
1929     Handle(TPrsStd_AISViewer) viewer;
1930     if( !TPrsStd_AISViewer::Find(L, viewer) ) return 1;  
1931
1932     Handle(TPrsStd_AISPresentation) prs;
1933     if(L.FindAttribute( TPrsStd_AISPresentation::GetID(), prs) ) {   
1934       if( nb == 4 ) {
1935         prs->SetMaterial((Graphic3d_NameOfMaterial)Draw::Atoi(arg[3]));
1936         TPrsStd_AISViewer::Update(L);
1937       }
1938       else {
1939          di << "Material = " << prs->Material() << "\n";
1940       }
1941       return 0;
1942     }
1943   }
1944   di << arg[0] << " : Error\n";
1945   return 1;
1946 }
1947
1948 //=======================================================================
1949 //function : OCC1032_AISWidth
1950 //purpose  : OCC1032_AISWidth (DOC,entry,[width])
1951 //=======================================================================
1952
1953 static Standard_Integer OCC1032_AISWidth (Draw_Interpretor& di,
1954                                       Standard_Integer nb, 
1955                                       const char ** arg) 
1956 {
1957   if (nb >= 3) {     
1958     Handle(TDocStd_Document) D;
1959     if (!DDocStd::GetDocument(arg[1],D)) return 1;  
1960     TDF_Label L;
1961     if (!DDF::FindLabel(D->GetData(),arg[2],L)) return 1;  
1962
1963     Handle(TPrsStd_AISViewer) viewer;
1964     if( !TPrsStd_AISViewer::Find(L, viewer) ) return 1;  
1965
1966     Handle(TPrsStd_AISPresentation) prs;
1967     if(L.FindAttribute( TPrsStd_AISPresentation::GetID(), prs) ) {   
1968       if( nb == 4 ) {
1969         prs->SetWidth(Draw::Atof(arg[3]));
1970         TPrsStd_AISViewer::Update(L);
1971       }
1972       else {
1973          di << "Width = " << prs->Width() << "\n";
1974       }
1975       return 0;
1976     }
1977   }
1978   di << arg[0] << " : Error\n";
1979   return 1;
1980 }
1981
1982 //=======================================================================
1983 //function : OCC1033_AISMode
1984 //purpose  : OCC1033_AISMode (DOC,entry,[mode])
1985 //=======================================================================
1986
1987 static Standard_Integer OCC1033_AISMode (Draw_Interpretor& di,
1988                                      Standard_Integer nb, 
1989                                      const char ** arg) 
1990 {
1991   if (nb >= 3) {     
1992     Handle(TDocStd_Document) D;
1993     if (!DDocStd::GetDocument(arg[1],D)) return 1;  
1994     TDF_Label L;
1995     if (!DDF::FindLabel(D->GetData(),arg[2],L)) return 1;  
1996
1997     Handle(TPrsStd_AISViewer) viewer;
1998     if( !TPrsStd_AISViewer::Find(L, viewer) ) return 1;  
1999
2000     Handle(TPrsStd_AISPresentation) prs;
2001     if(L.FindAttribute( TPrsStd_AISPresentation::GetID(), prs) ) {   
2002       if( nb == 4 ) {
2003         prs->SetMode(Draw::Atoi(arg[3]));
2004         TPrsStd_AISViewer::Update(L);
2005       }
2006       else {
2007          di << "Mode = " << prs->Mode() << "\n";
2008       }
2009       return 0;
2010     }
2011   }
2012   di << arg[0] << " : Error\n";
2013   return 1;
2014 }
2015
2016 //=======================================================================
2017 //function : OCC1034_AISSelectionMode
2018 //purpose  : OCC1034_AISSelectionMode (DOC,entry,[selectionmode])
2019 //=======================================================================
2020
2021 static Standard_Integer OCC1034_AISSelectionMode (Draw_Interpretor& di,
2022                                               Standard_Integer nb, 
2023                                               const char ** arg) 
2024 {
2025   if (nb >= 3) {     
2026     Handle(TDocStd_Document) D;
2027     if (!DDocStd::GetDocument(arg[1],D)) return 1;  
2028     TDF_Label L;
2029     if (!DDF::FindLabel(D->GetData(),arg[2],L)) return 1;  
2030
2031     Handle(TPrsStd_AISViewer) viewer;
2032     if( !TPrsStd_AISViewer::Find(L, viewer) ) return 1;  
2033
2034     Handle(TPrsStd_AISPresentation) prs;
2035     if(L.FindAttribute( TPrsStd_AISPresentation::GetID(), prs) ) {   
2036       if( nb == 4 ) {
2037         prs->SetSelectionMode(Draw::Atoi(arg[3]));
2038         TPrsStd_AISViewer::Update(L);
2039       }
2040       else {
2041          di << "SelectionMode = " << prs->SelectionMode() << "\n";
2042       }
2043       return 0;
2044     }
2045   }
2046   di << arg[0] << " : Error\n";
2047   return 1;
2048 }
2049
2050 #include<BRepAlgoAPI_Cut.hxx>
2051 #include<BRepAlgo_Cut.hxx>
2052 //=======================================================================
2053 //function :  OCC1487
2054 //purpose  :
2055 //=======================================================================
2056 static Standard_Integer OCC1487 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2057 {
2058   //if(argc != 5) {
2059   //  cerr << "Usage : " << argv[0] << " CylinderVariant(=1/2) cylinder1 cylinder2 cutshape" << endl;
2060   //  return -1;
2061   //}
2062   if(argc < 5 || argc > 6) {
2063     di << "Usage : " << argv[0] << " CylinderVariant(=1/2) cylinder1 cylinder2 cutshape [BRepAlgoAPI/BRepAlgo = 1/0]\n";
2064     return 1;
2065   }
2066   Standard_Boolean IsBRepAlgoAPI = Standard_True;
2067   if (argc == 6) {
2068     Standard_Integer IsB = Draw::Atoi(argv[5]);
2069     if (IsB != 1) {
2070       IsBRepAlgoAPI = Standard_False;
2071 //      di << "Error: There is not BRepAlgo_Cut class\n";
2072 //      return 1;
2073     }
2074   }
2075
2076   Standard_Integer CaseNumber = Draw::Atoi(argv[1]);
2077
2078   //BRepPrimAPI_MakeCylinder o_mc1 (gp_Ax2 (gp_Pnt(0,-50,140), gp_Dir(1,0,0)), 50,1000);
2079   gp_Dir myDir(1,0,0);
2080   gp_Pnt myPnt(0,-50,140);
2081   gp_Ax2 myAx2(myPnt, myDir);
2082   BRepPrimAPI_MakeCylinder o_mc1 (myAx2, 50,1000);
2083
2084   TopoDS_Shape cyl1 = o_mc1.Shape();
2085
2086   TopoDS_Shape cyl2;
2087   TopoDS_Shape o_cut_shape;
2088   if (CaseNumber == 1) {
2089     //BRepPrimAPI_MakeCylinder o_mc2 (gp_Ax2 (gp_Pnt(21.65064, -50.0, 127.5),gp_Dir(-sin(M_PI/3), 0.0, 0.5)), 5, 150);
2090     gp_Dir myDir_mc2(-sin(M_PI/3), 0.0, 0.5);
2091     gp_Pnt myPnt_mc2(21.65064, -50.0, 127.5);
2092     gp_Ax2 myAx2_mc2(myPnt_mc2, myDir_mc2);
2093     BRepPrimAPI_MakeCylinder o_mc2 (myAx2_mc2, 5, 150);
2094
2095     cyl2 = o_mc2.Shape();
2096 //#if ! defined(BRepAlgoAPI_def01)
2097 //    o_cut_shape = BRepAlgoAPI_Cut (o_mc1.Solid (), o_mc2.Solid ());
2098 //#else
2099 //    o_cut_shape = BRepAlgo_Cut (o_mc1.Solid (), o_mc2.Solid ());
2100 //#endif
2101     if (IsBRepAlgoAPI) {
2102       di << "o_cut_shape = BRepAlgoAPI_Cut (o_mc1.Solid (), o_mc2.Solid ())\n";
2103       o_cut_shape = BRepAlgoAPI_Cut (o_mc1.Solid (), o_mc2.Solid ());
2104     } else {
2105       di << "o_cut_shape = BRepAlgo_Cut (o_mc1.Solid (), o_mc2.Solid ())\n";
2106       o_cut_shape = BRepAlgo_Cut (o_mc1.Solid (), o_mc2.Solid ());
2107     }
2108   } else {
2109     //BRepPrimAPI_MakeCylinder o_mc2 (gp_Ax2 (gp_Pnt(978.34936, -50.0, 127.5),gp_Dir(sin(M_PI/3), 0.0, 0.5)), 5, 150);
2110     gp_Dir myDir_mc2(sin(M_PI/3), 0.0, 0.5);
2111     gp_Pnt myPnt_mc2(978.34936, -50.0, 127.5);
2112     gp_Ax2 myAx2_mc2(myPnt_mc2, myDir_mc2);
2113     BRepPrimAPI_MakeCylinder o_mc2 (myAx2_mc2, 5, 150);
2114
2115     cyl2 = o_mc2.Shape();
2116 //#if ! defined(BRepAlgoAPI_def01)
2117 //    o_cut_shape = BRepAlgoAPI_Cut (o_mc1.Solid (), o_mc2.Solid ());
2118 //#else
2119 //    o_cut_shape = BRepAlgo_Cut (o_mc1.Solid (), o_mc2.Solid ());
2120 //#endif
2121     if (IsBRepAlgoAPI) {
2122       di << "o_cut_shape = BRepAlgoAPI_Cut (o_mc1.Solid (), o_mc2.Solid ())\n";
2123       o_cut_shape = BRepAlgoAPI_Cut (o_mc1.Solid (), o_mc2.Solid ());
2124     } else {
2125       di << "o_cut_shape = BRepAlgo_Cut (o_mc1.Solid (), o_mc2.Solid ())\n";
2126       o_cut_shape = BRepAlgo_Cut (o_mc1.Solid (), o_mc2.Solid ());
2127     }
2128   }
2129
2130   DBRep::Set(argv[2],cyl1);
2131   DBRep::Set(argv[3],cyl2);
2132   DBRep::Set(argv[4],o_cut_shape);
2133
2134   return 0;
2135 }
2136
2137 #include<TopTools_ListIteratorOfListOfShape.hxx>
2138 #include<BRepFilletAPI_MakeFillet.hxx>
2139 //=======================================================================
2140 //function :  OCC1077
2141 //purpose  :
2142 //=======================================================================
2143 TopoDS_Shape OCC1077_boolbl(BRepAlgoAPI_BooleanOperation& aBoolenaOperation,const Standard_Real aRadius)
2144 {
2145   Standard_Real t3d = 1.e-4;
2146   Standard_Real t2d = 1.e-5;
2147   Standard_Real ta  = 1.e-2;
2148   Standard_Real fl  = 1.e-3;
2149   Standard_Real tapp_angle = 1.e-2;
2150   GeomAbs_Shape blend_cont = GeomAbs_C1;
2151
2152   TopoDS_Shape ShapeCut = aBoolenaOperation.Shape();
2153
2154 //#ifdef OCC40 
2155 //  Handle(TopOpeBRepBuild_HBuilder) build = aBoolenaOperation.Builder();
2156 //#endif 
2157   TopTools_ListIteratorOfListOfShape its;
2158
2159   TopoDS_Compound result;
2160   BRep_Builder B;
2161   B.MakeCompound(result);
2162
2163   TopExp_Explorer ex;
2164   for (ex.Init(ShapeCut, TopAbs_SOLID); ex.More(); ex.Next())
2165     {
2166       const TopoDS_Shape& cutsol = ex.Current();
2167
2168       BRepFilletAPI_MakeFillet fill(cutsol);
2169       fill.SetParams(ta, t3d, t2d, t3d, t2d, fl);
2170       fill.SetContinuity(blend_cont, tapp_angle);
2171 //#ifdef OCC40
2172 //      its = build->Section();
2173 //#else //OCC40DEV
2174       its = aBoolenaOperation.SectionEdges();
2175 //#endif
2176       while (its.More())
2177         {
2178           TopoDS_Edge E = TopoDS::Edge(its.Value());
2179           fill.Add(aRadius, E);
2180           its.Next();
2181         }
2182
2183       fill.Build();
2184       if (fill.IsDone())
2185         {
2186           B.Add(result, fill.Shape());
2187         }
2188       else
2189         {
2190           B.Add(result, cutsol);
2191         }
2192     }
2193   return result;
2194 }
2195
2196 TopoDS_Shape OCC1077_cut_blend(const TopoDS_Shape& aShapeToCut, const TopoDS_Shape& aTool, const Standard_Real aRadius)
2197 {
2198   //return OCC1077_boolbl(BRepAlgoAPI_Cut(aShapeToCut, aTool),aRadius);
2199   BRepAlgoAPI_Cut aCut(aShapeToCut, aTool);
2200   return OCC1077_boolbl(aCut,aRadius);
2201 }
2202
2203 //TopoDS_Shape OCC1077_common_blend(const TopoDS_Shape& aShape1, const TopoDS_Shape& aShape2, const Standard_Real aRadius)
2204 //{
2205 //  return OCC1077_boolbl(BRepAlgoAPI_Common(aShape1, aShape2),aRadius);
2206 //}
2207
2208 TopoDS_Shape OCC1077_Bug()
2209 {
2210   TopoDS_Shape theBox = BRepPrimAPI_MakeBox(gp_Pnt(-5, - 5, - 5), 10, 10, 10).Shape();
2211   TopoDS_Shape theSphere = BRepPrimAPI_MakeSphere(7).Shape();
2212
2213   TopoDS_Shape theCommon = BRepAlgoAPI_Common(theBox,theSphere);
2214   TopoDS_Shape theCylinder1 = BRepPrimAPI_MakeCylinder(gp_Ax2(gp_Pnt(0, 0, - 10),
2215                                                               gp_Dir(0, 0, 1)), 3, 20).Shape();
2216   TopoDS_Shape theCylinder2 = BRepPrimAPI_MakeCylinder(gp_Ax2(gp_Pnt(-10, 0, 0),
2217                                                               gp_Dir(1, 0, 0)), 3, 20).Shape();
2218   TopoDS_Shape theCylinder3 = BRepPrimAPI_MakeCylinder(gp_Ax2(gp_Pnt(0, - 10, 0),
2219                                                               gp_Dir(0, 1, 0)), 3, 20).Shape();
2220   TopoDS_Shape theTmp1 = OCC1077_cut_blend(theCommon,theCylinder1,0.7);
2221   Handle(ShapeFix_Shape) fixer = new ShapeFix_Shape(theTmp1);
2222   fixer->Perform();
2223   theTmp1 = fixer->Shape();
2224   TopoDS_Shape theTmp2 = OCC1077_cut_blend(theTmp1,theCylinder2,0.7);
2225   fixer->Init(theTmp2);
2226   fixer->Perform();
2227   theTmp2 = fixer->Shape();
2228   TopoDS_Shape theResult = OCC1077_cut_blend(theTmp2,theCylinder3,0.7);
2229   fixer->Init(theResult);
2230   fixer->Perform();
2231   theResult = fixer->Shape();
2232   return theResult;
2233 }
2234
2235 static Standard_Integer OCC1077 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2236 {
2237   if(argc < 1 || argc > 2) {
2238     di << "Usage : " << argv[0] << " result\n";
2239     return 1;
2240   }
2241
2242   TopoDS_Shape S = OCC1077_Bug();
2243   DBRep::Set(argv[1],S);
2244
2245   return 0;
2246 }
2247
2248 //////////////////////////////////////////////////////////////
2249 /*!
2250  * Compute uniform distribution of points using GCPnts_UniformAbscissa
2251  */
2252 //////////////////////////////////////////////////////////////
2253 static Standard_Integer OCC5739_UniAbs (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2254 {
2255   if (argc < 4)
2256   {
2257     di << "Usage : " << argv[0] << " name shape step\n";
2258     return 1;
2259   }
2260   const char *name = argv[1];
2261   Adaptor3d_Curve *adapCurve=NULL;
2262   Handle(Geom_Curve) curve = DrawTrSurf::GetCurve(argv[2]);
2263   if (!curve.IsNull())
2264     adapCurve = new GeomAdaptor_Curve(curve);
2265   else
2266   {
2267     TopoDS_Shape wire = DBRep::Get(argv[2]);
2268     if (wire.IsNull() || wire.ShapeType() != TopAbs_WIRE)
2269     {
2270       di << argv[0] <<" Faulty : incorrect 1st parameter, curve or wire expected\n";
2271       return 1;
2272     }
2273     adapCurve = new BRepAdaptor_CompCurve(TopoDS::Wire(wire));
2274   }
2275   double step = Draw::Atof(argv[3]);
2276   GCPnts_UniformAbscissa aUni(*adapCurve, step);
2277   int res;
2278   if (!aUni.IsDone())
2279   {
2280     di << argv[0] <<" : fail\n";
2281     res = 1;
2282   }
2283   else
2284   {
2285     int i, np = aUni.NbPoints();
2286     for (i=0; i < np; i++)
2287     {
2288       double par = aUni.Parameter(i+1);
2289       gp_Pnt p = adapCurve->Value(par);
2290       char n[20], *pname=n;
2291       Sprintf(n,"%s_%d",name,i+1);
2292       DrawTrSurf::Set(pname,p);
2293       di<<pname<<" ";
2294     }
2295     res = 0;
2296   }
2297   delete adapCurve;
2298   return res;
2299 }
2300
2301 static Standard_Integer OCC6046 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2302 {
2303   if (argc != 3)
2304   {
2305     di << "Usage : " << argv[0] << " nb_of_vectors size\n";
2306     return 1;
2307   }
2308
2309   Standard_Integer nb = Draw::Atoi(argv[1]);
2310   Standard_Integer sz = Draw::Atoi(argv[2]);
2311   Standard_Real val = 10;
2312   math_Vector **pv = new math_Vector *[nb];
2313
2314   di<<"creating "<<nb<<" vectors "<<sz<<" elements each...\n";
2315   Standard_Integer i;
2316   for (i=0; i < nb; i++) {
2317     pv[i] = new math_Vector (1, sz, val);
2318     if ((i % (nb/10)) == 0) {
2319       di<<" "<<i;
2320       //cout.flush();
2321       di<<"\n";
2322     }
2323   }
2324   di<<" done\n";
2325   di<<"deleting them ...\n";
2326   for (i=0; i < nb; i++) {
2327     delete pv[i];
2328     if ((i % (nb/10)) == 0) {
2329       di<<" "<<i;
2330       //cout.flush();
2331       di<<"\n";
2332     }
2333   }
2334   di<<" done\n";
2335
2336   delete [] pv;
2337
2338   return 0;
2339 }
2340
2341 static Standard_Integer OCC5698 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2342 {
2343   if (argc != 2)
2344   {
2345     di << "Usage : " << argv[0] << " wire\n";
2346     return 1;
2347   }
2348   TopoDS_Shape shape = DBRep::Get(argv[1],TopAbs_WIRE);
2349   if (shape.IsNull())
2350     return 1;
2351   TopoDS_Wire wire = TopoDS::Wire(shape);
2352   // create curve parameterised by curvilinear distance
2353   BRepAdaptor_CompCurve curve(wire,Standard_True);
2354   Standard_Real length = curve.LastParameter();
2355   Standard_Real need_length = length/2;
2356   gp_Pnt pnt;
2357   curve.D0(need_length,pnt);
2358   // create check_curve parameterised in a general way
2359   BRepAdaptor_CompCurve check_curve(wire);
2360   Standard_Real check_par =
2361     GCPnts_AbscissaPoint(check_curve, need_length, 0).Parameter();
2362   gp_Pnt check_pnt;
2363   check_curve.D0(check_par,check_pnt);
2364   // check that points are coinsiding
2365   Standard_Real error_dist = pnt.Distance(check_pnt);
2366   if (error_dist > Precision::Confusion()) {
2367     //cout.precision(3);
2368     di<<"error_dist = "<<error_dist<<
2369       "  ( "<<error_dist/need_length*100<<" %)\n";
2370     return 0;
2371   }
2372   di<<"OK\n";
2373   return 0;
2374 }
2375
2376 // stack overflow can be successfully handled only on 32-bit Windows
2377 #if defined(_WIN32) && !defined(_WIN64)
2378 static int StackOverflow (int i = -1)
2379 {
2380   char arr[2000];
2381   memset (arr, 0, sizeof(arr));
2382   if (i < 0)
2383     StackOverflow(i-1);
2384   return i;
2385 }
2386 #endif
2387
2388 // this code does not work with optimize mode on Windows
2389 #if defined(_MSC_VER)
2390 #pragma optimize( "", off )
2391 #endif
2392 static Standard_Integer OCC6143 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2393 {
2394   if (argc != 1)
2395     {
2396       cout << "Usage : " << argv[0] << "\n";
2397       return 1;
2398     }
2399   Standard_Boolean Succes;
2400   
2401   Succes = Standard_True;
2402   //OSD::SetSignal();
2403
2404   {//==== Test Divide ByZero (Integer) ========================================
2405     try{
2406       OCC_CATCH_SIGNALS
2407       cout << "(Integer) Divide By Zero..." << endl;
2408       di << "(Integer) Divide By Zero...";
2409       //cout.flush();
2410       di << "\n";
2411       Standard_Integer res, a =4, b = 0 ;
2412       res = a / b;
2413       di << "Error: 4 / 0 = " << res << " - no exception is raised!\n";
2414       Succes = Standard_False;
2415     }
2416 #if defined(SOLARIS) || defined(_WIN32)
2417     catch(Standard_DivideByZero)
2418 #else
2419     catch(Standard_NumericError)
2420 #endif
2421     {
2422       di << "Caught, OK\n";
2423     }
2424     catch(Standard_Failure const& anException) {
2425       di << " Caught (";
2426       di << anException.GetMessageString();
2427       di << ")... KO\n";
2428       Succes = Standard_False;
2429     }
2430     // this case tests if (...) supersedes (Standard_*),
2431     // the normal behaviour is not
2432     catch(...) {
2433       di<<" unknown exception... (But) Ok\n";
2434     }
2435   }
2436
2437   {//==== Test Divide ByZero (Real) ===========================================
2438     try{
2439       OCC_CATCH_SIGNALS
2440       cout << "(Real) Divide By Zero..." << endl;
2441       di << "(Real) Divide By Zero...";
2442       //cout.flush();
2443       di << "\n";
2444       Standard_Real res, a= 4.0, b=0.0;
2445       res = a / b;
2446       di << "Error: 4.0 / 0.0 = " << res << " - no exception is raised!\n";
2447       Succes = Standard_False;
2448     }
2449     catch(Standard_DivideByZero) // Solaris, Windows w/o SSE2
2450     {
2451       di << "Caught, OK\n";
2452     }
2453     catch(Standard_NumericError) // Linux, Windows with SSE2
2454     {
2455       di << "Caught, OK\n";
2456     }
2457     catch(Standard_Failure const& anException) {
2458       //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl;
2459       di << " Caught (";
2460       di << anException.GetMessageString();
2461       di << ")... KO\n";
2462       Succes = Standard_False;
2463     }
2464   }
2465
2466   {//==== Test Overflow (Integer) =============================================
2467     try{
2468       OCC_CATCH_SIGNALS
2469       cout << "(Integer) Overflow..." << endl;
2470       di << "(Integer) Overflow...";
2471       //cout.flush();
2472       di << "\n";
2473       Standard_Integer res, i=IntegerLast();
2474       res = i + 1;
2475       //++++ cout << " -- "<<res<<"="<<i<<"+1   Does not Caught... KO"<< endl;
2476       //++++ Succes = Standard_False;
2477       di << "Not caught: " << i << " + 1 = " << res << ", still OK\n";
2478     }
2479     catch(Standard_Overflow) {
2480       di << "Caught, OK\n";
2481     }
2482     catch(Standard_Failure const& anException) {
2483       //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl;
2484       di << " Caught (";
2485       di << anException.GetMessageString();
2486       di << ")... KO\n";
2487       Succes = Standard_False;
2488     }
2489   }
2490
2491   {//==== Test Overflow (Real) ================================================ 
2492     try{
2493       OCC_CATCH_SIGNALS
2494       cout << "(Real) Overflow..." << endl;
2495       di << "(Real) Overflow...";
2496       //cout.flush();
2497       di << "\n";
2498       Standard_Real res, r=RealLast();
2499       res = r * r;
2500       
2501       (void)sin(1.); //this function tests FPU flags and raises signal (tested on LINUX).
2502
2503       di << "Error: " << r << "*" << r << " = " << res << " - no exception is raised!\n";
2504       Succes = Standard_False;
2505     }
2506     catch(Standard_Overflow) // Solaris, Windows w/o SSE2
2507     {
2508       di << "Caught, OK\n";
2509     }
2510     catch(Standard_NumericError) // Linux, Windows with SSE2
2511     {
2512       di << "Caught, OK\n";
2513     }
2514     catch(Standard_Failure const& anException) {
2515       //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl;
2516       di << " Caught (";
2517       di << anException.GetMessageString();
2518       di << ")... KO\n";
2519       Succes = Standard_False;
2520     }
2521   }
2522
2523   {//==== Test Underflow (Real) ===============================================
2524     try{
2525       OCC_CATCH_SIGNALS
2526       cout << "(Real) Underflow" << endl; // to have message in log even if process crashed
2527       di << "(Real) Underflow";
2528       //cout.flush();
2529       di << "\n";
2530       Standard_Real res, r=1.0e-308;
2531       res = r * r;
2532       //res = res + 1.;
2533       //++++ cout<<"-- "<<res<<"="<<r<<"*"<<r<<"   Does not Caught... KO"<<endl;
2534       //++++ Succes = Standard_False;
2535       di << "Not caught: " << r << "*" << r << " = " << res << ", still OK\n";
2536     }
2537     catch(Standard_Underflow) // could be on Solaris, Windows w/o SSE2
2538     {
2539       di << "Exception caught, KO\n";
2540       Succes = Standard_False;
2541     }
2542     catch(Standard_NumericError) // could be on Linux, Windows with SSE2
2543     {
2544       di << "Exception caught, KO\n";
2545       Succes = Standard_False;
2546     }
2547     catch(Standard_Failure const& anException) {
2548       //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl;
2549       di << " Caught (";
2550       di << anException.GetMessageString();
2551       di << ")... KO\n";
2552       Succes = Standard_False;
2553     }
2554   }
2555
2556   {//==== Test Invalid Operation (Real) ===============================================
2557     try{
2558       OCC_CATCH_SIGNALS
2559       cout << "(Real) Invalid Operation..." << endl;
2560       di << "(Real) Invalid Operation...";
2561       //cout.flush();
2562       di << "\n";
2563       Standard_Real res, r=-1;
2564       res = sqrt(r);
2565       di << "Error: swrt(-1) = " << res << " - no exception is raised!\n";
2566       Succes = Standard_False;
2567     }
2568     catch(Standard_NumericError) {
2569       di << "Caught, OK\n";
2570     }
2571     catch(Standard_Failure const& anException) {
2572       //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl;
2573       di << " Caught (";
2574       di << anException.GetMessageString();
2575       di << ")... KO\n";
2576       Succes = Standard_False;
2577     }
2578   }
2579
2580   {//==== Test Access Violation ===============================================
2581     try {
2582       OCC_CATCH_SIGNALS
2583       cout << "Segmentation Fault..." << endl;
2584       di << "Segmentation Fault...";
2585       //cout.flush();
2586       di << "\n";
2587       int* pint=NULL;
2588       *pint = 4;
2589       di << "Error: writing by NULL address - no exception is raised!\n";
2590       Succes = Standard_False;
2591     }
2592 #ifdef _WIN32
2593     catch(OSD_Exception_ACCESS_VIOLATION)
2594 #else
2595     catch(OSD_SIGSEGV)
2596 #endif
2597     {
2598       di << "Caught, OK\n";
2599     } catch(Standard_Failure const& anException) {
2600       //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl;
2601       di << " Caught (";
2602       di << anException.GetMessageString();
2603       di << ")... KO\n";
2604       Succes = Standard_False;
2605     }
2606   }
2607
2608 #if defined(_WIN32) && !defined(_WIN64)
2609   {//==== Test Stack Overflow ===============================================
2610     try {
2611       OCC_CATCH_SIGNALS
2612       cout << "Stack Overflow..." << endl;
2613       di << "Stack Overflow...";
2614       //cout.flush();
2615       di << "\n";
2616       StackOverflow();
2617       di << "Error - no exception is raised!\n";
2618       Succes = Standard_False;
2619     }
2620     catch(OSD_Exception_STACK_OVERFLOW) {
2621       di << "Caught, OK\n";
2622     }
2623     catch(Standard_Failure) {
2624       //cout << " Caught (" << Standard_Failure::Caught() << ")... KO" << endl;
2625       di << " Caught (";
2626       di << Standard_Failure::Caught()->GetMessageString();
2627       di << ")... KO\n";
2628       Succes = Standard_False;
2629     }
2630   }
2631 #endif
2632
2633  if(Succes) {
2634    di << "TestExcept: Successfull completion\n";
2635  } else {
2636    di << "TestExcept: failure\n";
2637  }
2638
2639   return 0;
2640 }
2641 #if defined(_MSC_VER)
2642 #pragma optimize( "", on )
2643 #endif
2644
2645 static TopoDS_Compound AddTestStructure(int nCount_)
2646 {
2647   BRep_Builder B;
2648   int nCount=nCount_;
2649   TopoDS_Compound C;
2650   B.MakeCompound(C);
2651   BRepPrimAPI_MakeBox mkBox(1.0, 2.0, 3.0);
2652   for (int i=0; i<nCount; i++) {
2653     for (int j=0; j<nCount; j++) {
2654       gp_Trsf trsf;
2655       trsf.SetTranslationPart(gp_Vec(5.0*i, 05.0*j, 0.0));
2656       TopLoc_Location topLoc(trsf);
2657       TopoDS_Shape tempShape=mkBox.Shape().Located(topLoc);
2658       B.Add(C, tempShape);
2659     }
2660   }
2661   return C;
2662 }
2663
2664 static Standard_Integer OCC7141 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2665 {
2666   int nCount = 10;
2667
2668   if (argc > 3)
2669     {
2670       di << "Usage : " << argv[0] << " [nCount] path\n";
2671       return 1;
2672     }
2673
2674   if (argc > 2)
2675     nCount = Draw::Atoi(argv[1]);
2676     TCollection_AsciiString aFilePath = argv[2];
2677   STEPCAFControl_Writer writer;
2678   Handle(TDocStd_Document) document;
2679   document = new TDocStd_Document("Pace Test-StepExporter-");
2680   Handle(XCAFDoc_ShapeTool) shapeTool;
2681   shapeTool = XCAFDoc_DocumentTool::ShapeTool(document->Main());
2682   shapeTool->AddShape(AddTestStructure(nCount), Standard_True);
2683   STEPControl_StepModelType mode = STEPControl_AsIs;
2684   if (!Interface_Static::SetIVal("write.step.assembly",1)) { //assembly mode
2685     di << "Failed to set assembly mode for step data\n\n";
2686     return 0;
2687   }
2688   try {
2689     OCC_CATCH_SIGNALS
2690     if( writer.Transfer(document, mode)) {
2691         writer.Write(aFilePath.ToCString());
2692     }
2693   }
2694   catch(OSD_Exception_STACK_OVERFLOW) {
2695     di << "Failed : STACK OVERFLOW\n\n";
2696   }
2697   catch (Standard_Failure const& anException) {
2698     di << "Failed :\n\n";
2699     //cout << Standard_Failure::Caught() << endl;
2700     di << anException.GetMessageString();
2701   }
2702   di << argv[0] << " : Finish\n";
2703   
2704   return 0;
2705 }
2706
2707 static Standard_Integer OCC7372 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2708 {
2709   if (argc != 1)
2710     {
2711       di << "Usage : " << argv[0] << "\n";
2712       return 1;
2713     }
2714   
2715   // 1. Create an array of points
2716   Handle(TColgp_HArray1OfPnt2d) ap = new TColgp_HArray1OfPnt2d(1,5);
2717   ap->SetValue(1,gp_Pnt2d(100.0,0.0));
2718   ap->SetValue(2,gp_Pnt2d(100.0,100.0));
2719   ap->SetValue(3,gp_Pnt2d(0.0,100.0));
2720   ap->SetValue(4,gp_Pnt2d(0.0,0.0));
2721   ap->SetValue(5,gp_Pnt2d(50.0,-50.0));
2722
2723   // 2. Create a periodic bspline through these 5 points
2724   Geom2dAPI_Interpolate intp(ap,Standard_True,1e-6);
2725   intp.Perform();
2726   Handle(Geom2d_BSplineCurve) bspline1 = intp.Curve();
2727
2728   // 3. Increase degree of curve from 3 to 8
2729   bspline1->IncreaseDegree(8); // Increase degree to demonstrate the error
2730   Standard_CString CString1 = "BSplineCurve";
2731   DrawTrSurf::Set(CString1,bspline1);
2732
2733   // 4. Convers BSpline curve to Bezier segments
2734   Geom2dConvert_BSplineCurveToBezierCurve bc(bspline1);
2735
2736   // 5. Test the result of conversion
2737   TCollection_AsciiString aRName;
2738   for(Standard_Integer i = 1; i <= bc.NbArcs(); i++) {
2739     Handle(Geom2d_BezierCurve) arc = bc.Arc(i);
2740     aRName="segment_";
2741     aRName=aRName+TCollection_AsciiString(i);
2742     Standard_CString aRNameStr = aRName.ToCString();
2743     DrawTrSurf::Set(aRNameStr,arc);
2744     di << aRNameStr << " ";
2745   }
2746
2747   return 0;
2748 }
2749
2750 static Standard_Integer OCC8169 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2751 {
2752   if (argc != 4)
2753   {
2754     di << "Usage : " << argv[0] << " edge1 edge2 plane\n";
2755     return 1;
2756   }
2757   TopoDS_Edge theEdge1 = TopoDS::Edge(DBRep::Get(argv[1],TopAbs_EDGE));
2758   if (theEdge1.IsNull()) {
2759     di << "Invalid input shape " << argv[1] << "\n";
2760     return 1;
2761   }
2762   TopoDS_Edge theEdge2 = TopoDS::Edge(DBRep::Get(argv[2],TopAbs_EDGE));
2763   if (theEdge2.IsNull()) {
2764     di << "Invalid input shape " << argv[2] << "\n";
2765     return 1;
2766   }
2767   TopoDS_Face theFace = TopoDS::Face(DBRep::Get(argv[3],TopAbs_FACE));
2768   if (theFace.IsNull()) {
2769     di << "Invalid input shape " << argv[3] << "\n";
2770     return 1;
2771   }
2772
2773   Handle(Geom_Surface) thePlane = BRep_Tool::Surface(theFace);
2774
2775   Standard_Real aConfusion = Precision::Confusion();
2776   Standard_Real aP1first, aP1last, aP2first, aP2last;
2777
2778   Handle(Geom_Curve) aCurve1 = BRep_Tool::Curve(theEdge1, aP1first, aP1last);
2779   Handle(Geom_Curve) aCurve2 = BRep_Tool::Curve(theEdge2, aP2first, aP2last);
2780   Handle(Geom2d_Curve) aCurve2d1 = GeomProjLib::Curve2d(aCurve1, aP1first, aP1last, thePlane);
2781   Handle(Geom2d_Curve) aCurve2d2 = GeomProjLib::Curve2d(aCurve2, aP2first, aP2last, thePlane);
2782
2783   Geom2dAPI_InterCurveCurve anInter(aCurve2d1, aCurve2d2, aConfusion);
2784
2785   Standard_Integer NbPoints = anInter.NbPoints();
2786
2787   di << "NbPoints = " << NbPoints << "\n" ;
2788
2789   if (NbPoints > 0) {
2790     Standard_Integer i;
2791     for (i=1; i<=NbPoints; i++) {
2792       gp_Pnt2d aPi = anInter.Point(i);
2793       di << "Point.X(" << i << ") = " << aPi.X() << "   Point.Y(" << i << ") = " << aPi.Y() << "\n" ;
2794     }
2795   }
2796
2797   Standard_Integer NbSegments = anInter.NbSegments();
2798
2799   di << "\nNbSegments = " << NbSegments << "\n" ;
2800
2801   if (NbSegments > 0) {
2802     IntRes2d_IntersectionSegment aSegment = anInter.Intersector().Segment(1);
2803
2804     gp_Pnt2d aP1 = aCurve2d1->Value(aSegment.FirstPoint().ParamOnFirst());
2805     gp_Pnt2d aP2 = aCurve2d2->Value(aSegment.FirstPoint().ParamOnSecond());
2806   
2807     Standard_Real aDist = aP1.Distance(aP2);
2808   
2809     di << "aP1.X() = " << aP1.X() << "   aP1.Y() = " << aP1.Y() << "\n" ;
2810     di << "aP2.X() = " << aP2.X() << "   aP2.Y() = " << aP2.Y() << "\n" ;
2811
2812     di << "Distance = " << aDist << "\n" ;
2813
2814     di << "Confusion = " << aConfusion << "\n" ;
2815
2816     if (aDist > aConfusion) {
2817       di << "\n" << argv[0] << " Faulty\n" ;
2818     } else {
2819       di << "\n" << argv[0] << " OK\n" ;
2820     }
2821   } else {
2822     di << "\n" << argv[0] << " OK\n" ;
2823   }
2824
2825   return 0;
2826 }
2827 static Standard_Integer OCC10138 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
2828 {
2829   if (argc != 3)
2830   {
2831     di << "Usage : " << argv[0] << " lower upper\n";
2832     return 1;
2833   }
2834
2835   Standard_Integer LOWER = Draw::Atoi(argv[1]);
2836   Standard_Integer UPPER = Draw::Atoi(argv[2]);
2837
2838   //! 0. Create an empty document with several test labels
2839   Handle(TDocStd_Document) doc = new TDocStd_Document("XmlOcaf");
2840   doc->SetUndoLimit(100);
2841   TDF_Label main_label = doc->Main();
2842   TDF_Label label1 = main_label.FindChild(1, Standard_True);
2843   TDF_Label label2 = main_label.FindChild(2, Standard_True);
2844   
2845   //! 1. Set/Get OCAF attribute
2846   doc->OpenCommand();
2847   TDataStd_RealArray::Set(label1, LOWER, UPPER);
2848   Handle(TDataStd_RealArray) array;
2849   if (label1.FindAttribute(TDataStd_RealArray::GetID(), array) && 
2850       array->Lower() == LOWER && array->Upper() == UPPER)
2851     cout<<"1: OK"<<endl;
2852   else
2853   {
2854     cout<<"1: Failed.."<<endl;
2855     return 1;
2856   }
2857   doc->CommitCommand();
2858
2859   //! 2. Set/Get value
2860   doc->OpenCommand();
2861   Standard_Integer i;
2862   for (i = LOWER; i <= UPPER; i++)
2863     array->SetValue(i, i);
2864   for (i = LOWER; i <= UPPER; i++)
2865   {  
2866     if (array->Value(i) != i)
2867     {
2868       cout<<"2: Failed.."<<endl;
2869       return 2;
2870     }
2871   }
2872   cout<<"2: OK"<<endl;
2873   doc->CommitCommand();
2874
2875   //! 3. Re-init the array
2876   doc->OpenCommand();
2877   array->Init(LOWER + 2, UPPER + 4);
2878   if (array->Lower() != LOWER + 2 && array->Upper() != UPPER + 4)
2879   {
2880     cout<<"3: Failed.."<<endl;
2881     return 3;
2882   }
2883   for (i = LOWER + 2; i <= UPPER + 4; i++)
2884     array->SetValue(i, i);
2885   for (i = LOWER + 2; i <= UPPER + 4; i++)
2886   {  
2887     if (array->Value(i) != i)
2888     {
2889       cout<<"3: Failed.."<<endl;
2890       return 3;
2891     }
2892   }
2893   cout<<"3: OK"<<endl;
2894   doc->CommitCommand();
2895
2896   //! 4. Change array
2897   doc->OpenCommand();
2898   Handle(TColStd_HArray1OfReal) arr = new TColStd_HArray1OfReal(LOWER + 5, UPPER + 5);
2899   for (i = LOWER + 5; i <= UPPER + 5; i++)
2900     arr->SetValue(i, i);
2901   array->ChangeArray(arr);
2902   for (i = LOWER + 5; i <= UPPER + 5; i++)
2903   {  
2904     if (array->Value(i) != i)
2905     {
2906       cout<<"4: Failed.."<<endl;
2907       return 4;
2908     }
2909   }
2910   cout<<"4: OK"<<endl;
2911   doc->CommitCommand();
2912
2913   //! 5. Copy the array
2914   doc->OpenCommand();
2915   TDF_CopyLabel copier(label1, label2);
2916   copier.Perform();
2917   if (!copier.IsDone())
2918   {
2919     cout<<"5: Failed.."<<endl;
2920     return 5;
2921   }
2922   Handle(TDataStd_RealArray) array2;
2923   if (!label2.FindAttribute(TDataStd_RealArray::GetID(), array2))
2924   {
2925     cout<<"5: Failed.."<<endl;
2926     return 5;
2927   }
2928   for (i = LOWER + 5; i <= UPPER + 5; i++)
2929   {  
2930     if (array->Value(i) != i)
2931     {
2932       cout<<"5: Failed.."<<endl;
2933       return 5;
2934     }
2935   }
2936   cout<<"5: OK"<<endl;
2937   doc->CommitCommand();
2938
2939   //! 6. Undo/Redo
2940   //! 6.a: undoes the 5th action: the copied array should disappear
2941   doc->Undo();
2942   if (!label1.FindAttribute(TDataStd_RealArray::GetID(), array) ||
2943       label2.FindAttribute(TDataStd_RealArray::GetID(), array2))
2944   {
2945     cout<<"6.a: Failed.."<<endl;
2946     return 6;
2947   }
2948   //! 6.b: undoes the 4th action: the array should be changed to (lower+2,upper+4)
2949   doc->Undo();
2950   if (!label1.FindAttribute(TDataStd_RealArray::GetID(), array) || 
2951       array->Lower() != LOWER + 2 ||
2952       array->Upper() != UPPER + 4)
2953   {
2954     cout<<"6.b: Failed.."<<endl;
2955     return 6;
2956   }
2957   for (i = LOWER + 2; i <= UPPER + 4; i++)
2958   {
2959     if (array->Value(i) != i)
2960     {
2961       cout<<"6.b: Failed.."<<endl;
2962       return 6;
2963     }
2964   }
2965   //! 6.c: undoes the 3d action: the array should be changed to (lower,upper)
2966   doc->Undo();
2967   if (!label1.FindAttribute(TDataStd_RealArray::GetID(), array) || 
2968       array->Lower() != LOWER ||
2969       array->Upper() != UPPER)
2970   {
2971     cout<<"6.c: Failed.."<<endl;
2972     return 6;
2973   }
2974   for (i = LOWER; i <= UPPER; i++)
2975   {
2976     if (array->Value(i) != i)
2977     {
2978       cout<<"6.c: Failed.."<<endl;
2979       return 6;
2980     }
2981   }
2982   //! 6.d: undoes and redoes the 2nd action: no change is expected.
2983   doc->Undo();
2984   doc->Redo();
2985   if (!label1.FindAttribute(TDataStd_RealArray::GetID(), array) || 
2986       array->Lower() != LOWER ||
2987       array->Upper() != UPPER)
2988   {
2989     cout<<"6.d: Failed.."<<endl;
2990     return 6;
2991   }
2992   for (i = LOWER; i <= UPPER; i++)
2993   {
2994     if (array->Value(i) != i)
2995     {
2996       cout<<"6.d: Failed.."<<endl;
2997       return 6;
2998     }
2999   }
3000   cout<<"6: OK"<<endl;
3001
3002   //! 7. Re-set the array
3003   doc->OpenCommand();
3004   array = TDataStd_RealArray::Set(label1, LOWER + 1, UPPER + 1);
3005   if (array->Lower() != LOWER + 1 && array->Upper() != UPPER + 1)
3006   {
3007     cout<<"7: Failed.."<<endl;
3008     return 7;
3009   }
3010   for (i = LOWER + 1; i <= UPPER + 1; i++)
3011     array->SetValue(i, i);
3012   for (i = LOWER + 1; i <= UPPER + 1; i++)
3013   {  
3014     if (array->Value(i) != i)
3015     {
3016       cout<<"7: Failed.."<<endl;
3017       return 7;
3018     }
3019   }
3020   cout<<"7: OK"<<endl;
3021   doc->CommitCommand();
3022
3023   //! 8.Test of speed: set LOWER and UPPER equal to great integer number and 
3024   //! measure the time spent by this test.
3025   //! Good luck!
3026
3027   return 0;
3028 }
3029
3030 static Standard_Integer OCC7639 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3031 {
3032   Standard_Boolean IsEvenArgc =  Standard_True;
3033   if (argc % 2 == 0) {
3034     IsEvenArgc =  Standard_True;
3035   } else {
3036     IsEvenArgc =  Standard_False;
3037   }
3038
3039   if (argc < 3 || IsEvenArgc)
3040     {
3041       di << "Usage : " << argv[0] << " index1 value1 ... [indexN valueN]\n";
3042       return 1;
3043     }
3044
3045   Standard_Integer i, aValue, aPosition;
3046   NCollection_Vector<int> vec;
3047   for (i = 0; i < argc - 1; i++) {
3048     i++;
3049     aValue = Draw::Atoi(argv[i]);
3050     aPosition = Draw::Atoi(argv[i+1]);
3051     vec.SetValue(aValue, aPosition);
3052   }
3053   NCollection_Vector<int>::Iterator it(vec);
3054   Standard_Integer j;
3055   for (j = 0; it.More(); it.Next(), j++) {
3056     //di << it.Value() << "\n";                                               
3057     di << j << " " << it.Value() << "\n";                                               
3058   }
3059
3060   return 0;
3061 }
3062
3063 static Standard_Integer OCC8797 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3064 {
3065   if (argc != 1) {
3066     di << "Usage : " << argv[0] << "\n";
3067     return 1;
3068   }
3069
3070   gp_Pnt point(0.0,0.0,0.0);
3071
3072   TColgp_Array1OfPnt poles(0,6);
3073   poles(0)=point;
3074
3075   point.SetCoord(1.0,1.0,0.0);
3076   poles(1)=point;
3077
3078   point.SetCoord(2.0,1.0,0.0);
3079   poles(2)=point;
3080
3081   point.SetCoord(3.0,0.0,0.0);
3082   poles(3)=point;
3083
3084   point.SetCoord(4.0,1.0,0.0);
3085   poles(4)=point;
3086
3087   point.SetCoord(5.0,1.0,0.0);
3088   poles(5)=point;
3089
3090   point.SetCoord(6.0,0.0,0.0);
3091   poles(6)=point;
3092
3093   TColStd_Array1OfReal knots(0,2);
3094   knots(0)=0.0;
3095   knots(1)=0.5;
3096   knots(2)=1.0;
3097
3098   TColStd_Array1OfInteger multi(0,2);
3099   multi(0)=4;
3100   multi(1)=3;
3101   multi(2)=4;
3102
3103   Handle(Geom_BSplineCurve) spline = new Geom_BSplineCurve(poles,knots,multi,3);
3104
3105   //length!! 1.
3106   Standard_Real l_abcissa,l_gprop;
3107   GeomAdaptor_Curve adaptor_spline(spline);
3108   GCPnts_AbscissaPoint temp;
3109   l_abcissa=temp.Length(adaptor_spline);
3110   cout<<"Length Spline(abcissa_Pnt): "<<l_abcissa<<endl;
3111
3112   //length!! 2.
3113   TopoDS_Edge edge = BRepBuilderAPI_MakeEdge (spline);
3114   GProp_GProps prop;
3115   BRepGProp::LinearProperties(edge,prop);
3116   l_gprop=prop.Mass();
3117   cout<<"Length Spline(GProp_GProps): "<<l_gprop<<endl;
3118
3119   cout<<"Difference (abcissa_Pnt<->GProp_GProps): "<<l_gprop-l_abcissa<<endl;
3120
3121   return 0;
3122 }
3123
3124 static Standard_Integer OCC7068 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3125 {
3126   if (argc != 1)
3127   {
3128     di << "Usage : " << argv[0] << "\n";
3129     return 1;
3130   }
3131
3132   Handle(AIS_InteractiveContext) AISContext = ViewerTest::GetAISContext();
3133   if(AISContext.IsNull())
3134   {
3135     di << "use 'vinit' command before " << argv[0] << "\n";
3136     return 1;
3137   }
3138
3139   // ObjectsInside
3140   AIS_ListOfInteractive ListOfIO_1;
3141   AISContext->ObjectsInside(ListOfIO_1);
3142   di<< "ObjectsInside = " << ListOfIO_1.Extent() <<"\n";
3143   if (!ListOfIO_1.IsEmpty() ) {
3144     AIS_ListIteratorOfListOfInteractive iter;
3145     for (iter.Initialize(ListOfIO_1); iter.More() ; iter.Next() ) {
3146       Handle(AIS_InteractiveObject) aIO=iter.Value();
3147       di<< GetMapOfAIS().Find1(aIO).ToCString() <<"\n";
3148     }
3149   }
3150
3151   return 0;
3152 }
3153
3154 static Standard_Integer OCC11457 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3155 {
3156   if ((argc < 9) || (((argc-3) % 3) != 0))
3157   {
3158     di << "Usage : " << argv[0] << "polygon lastedge x1 y1 z1 x2 y2 z2 ...\n";
3159     return 1;
3160   }
3161   Standard_Integer i, j, np = (argc-3) / 3;
3162   BRepBuilderAPI_MakePolygon W;
3163   j = 3;
3164   for (i = 1; i <= np; i ++) {
3165     W.Add(gp_Pnt(Draw::Atof(argv[j]),Draw::Atof(argv[j+1]),Draw::Atof(argv[j+2])));
3166     j += 3;
3167   }
3168   W.Close();
3169   DBRep::Set(argv[1],W.Wire());
3170   DBRep::Set(argv[2],W.Edge());
3171   return 0;
3172 }
3173
3174 static Standard_Integer OCC13963 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3175 {
3176   if (argc < 5) {
3177     di << "Usage : " << argv[0] << " ratio origin_x origin_y origin_z\n";
3178     return 1;
3179   }
3180   gp_Ax2 aPln (gp_Pnt(0.,0.,0.),
3181                gp_Dir(1., -1., 0.));
3182   gp_GTrsf aTrf;
3183   aTrf.SetAffinity (aPln, Draw::Atof(argv[4]));
3184   gp_XYZ aOrigin (Draw::Atof(argv[1]),Draw::Atof(argv[2]),Draw::Atof(argv[3]));
3185   gp_XYZ aResult (aOrigin);
3186   aTrf.Transforms(aResult);
3187   char sbf[512];
3188   Sprintf(sbf, "( %8.3f %8.3f %8.3f ) => ( %8.3f %8.3f %8.3f )\n",
3189           aOrigin.X(), aOrigin.Y(), aOrigin.Z(),
3190           aResult.X(), aResult.Y(), aResult.Z());
3191   di<<sbf;
3192   return 0;
3193 }
3194
3195 Standard_Integer OCC14376(Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3196 {
3197   if (argc < 2) {
3198     di << "Usage : " << argv[0] << " shape [deflection]\n";
3199     return 1;
3200   }
3201
3202   TopoDS_Shape aShape = DBRep::Get(argv[1]);
3203
3204   if (aShape.IsNull()) {
3205     di<<" Null shape is not allowed";
3206     return 1;
3207   }
3208
3209   Standard_Real aDeflection = 0.45110277533;
3210   if (argc > 2) {
3211     aDeflection = Draw::Atof(argv[2]);
3212   }
3213   di<<"deflection="<< aDeflection << "\n";
3214
3215   BRepMesh_IncrementalMesh aIMesh(aShape, aDeflection, Standard_False, M_PI / 9.);
3216   TopLoc_Location aLocation;
3217   Handle(Poly_Triangulation) aTriang = BRep_Tool::Triangulation(TopoDS::Face(aShape), aLocation);
3218
3219   if(aTriang.IsNull()) {
3220     di << argv[0] << " : Faulty\n" ;
3221   } else {
3222     di << argv[0] << " : OK\n" ;
3223     di<<"NbNodes="<< aTriang->NbNodes()<< "\n";
3224     di<<"NbTriangles="<< aTriang->NbTriangles()<< "\n";
3225   }
3226   return 0;
3227 }
3228
3229 static Standard_Integer OCC15489 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3230 {
3231   if (argc != 4) {
3232     di << "Usage : " << argv[0] << " A B C\n";
3233     return 1;
3234   }
3235   try
3236     {
3237       gp_Lin2d aLin2d (Draw::Atof(argv[1]),Draw::Atof(argv[2]),Draw::Atof(argv[3]));
3238       gp_Pnt2d anOrigin = aLin2d.Location();
3239       di << "X_0 = " << anOrigin.X() << "   Y_0 = " << anOrigin.Y() << "\n" ;
3240     }
3241   catch(Standard_ConstructionError)
3242     {
3243       di << argv[0] << " Exception: Sqrt(A*A + B*B) <= Resolution from gp\n";
3244     }
3245   return 0;
3246 }
3247
3248 static Standard_Integer OCC15755 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
3249 {
3250   if (argc != 3) {
3251     di << "Usage : " << argv[0] << " file shape\n";
3252     return 1;
3253   }
3254
3255   IGESControl_Reader aReader;
3256   aReader.ReadFile(argv[1]);
3257   aReader.SetReadVisible(Standard_True);
3258   aReader.TransferRoots();
3259
3260   Handle(IGESData_IGESModel) model = aReader.IGESModel();
3261   if (model.IsNull()) {
3262     di << "model.IsNull()\n";
3263     return 1;
3264   }
3265   Standard_Integer nb = model->NbEntities();
3266   for (Standard_Integer i = 1; i <= nb; i ++) {
3267     Handle(IGESData_IGESEntity) ent = model->Entity(i);
3268     Handle(TCollection_HAsciiString) name;
3269     name = ent->NameValue();
3270     Standard_CString aStr = name->ToCString();
3271     di << "NameValue = " << aStr << "\n";
3272   }
3273
3274   TopoDS_Shape shape = aReader.OneShape();
3275   DBRep::Set(argv[2],shape);
3276   return 0;
3277 }
3278
3279 // For OCC16782 testing
3280 #include <AppStd_Application.hxx>
3281 #include <TDF_Tool.hxx>
3282 #include <TColStd_HArray1OfInteger.hxx>
3283 // Iterators
3284 #include <TColStd_ListIteratorOfListOfInteger.hxx>
3285 #include <TColStd_ListIteratorOfListOfReal.hxx>
3286 #include <TDataStd_ListIteratorOfListOfExtendedString.hxx>
3287 #include <TDataStd_ListIteratorOfListOfByte.hxx>
3288 #include <TDF_ListIteratorOfLabelList.hxx>
3289 // Attributes
3290 #include <TDataStd_Tick.hxx>
3291 #include <TDataStd_IntegerList.hxx>
3292 #include <TDataStd_RealList.hxx>
3293 #include <TDataStd_ExtStringList.hxx>
3294 #include <TDataStd_BooleanList.hxx>
3295 #include <TDataStd_ReferenceList.hxx>
3296 #include <TDataStd_BooleanArray.hxx>
3297 #include <TDataStd_ReferenceArray.hxx>
3298 #include <TDataStd_ByteArray.hxx>
3299 #include <TDataStd_NamedData.hxx>
3300 #include <TDF_Reference.hxx>
3301 //
3302 Handle(AppStd_Application) app;
3303 int TestSetGet(const Handle(TDocStd_Document)& doc)
3304 {
3305   // TDataStd_Tick:
3306   // Set
3307   TDataStd_Tick::Set(doc->Main());
3308   // Get
3309   Handle(TDataStd_Tick) tick;
3310   if (!doc->Main().FindAttribute(TDataStd_Tick::GetID(), tick))
3311     return 1;
3312   // Forget
3313   doc->Main().ForgetAttribute(TDataStd_Tick::GetID());
3314   if (doc->Main().IsAttribute(TDataStd_Tick::GetID()))
3315     return 2;
3316   doc->Main().ResumeAttribute(tick);
3317   if (!doc->Main().IsAttribute(TDataStd_Tick::GetID()))
3318     return 3;
3319   // Forget
3320   doc->Main().ForgetAttribute(TDataStd_Tick::GetID());
3321   if (doc->Main().IsAttribute(TDataStd_Tick::GetID()))
3322     return 2;
3323
3324   // TDataStd_IntegerList:
3325   // Set
3326   Handle(TDataStd_IntegerList) setintlist = TDataStd_IntegerList::Set(doc->Main());
3327   setintlist->Append(2);
3328   setintlist->Prepend(1);
3329   setintlist->InsertAfter(3, 2);
3330   setintlist->InsertBefore(0, 1);
3331   setintlist->Append(200);
3332   setintlist->Remove(0);
3333   setintlist->Remove(200);
3334   // Get
3335   Handle(TDataStd_IntegerList) getintlist;
3336   if (!doc->Main().FindAttribute(TDataStd_IntegerList::GetID(), getintlist))
3337     return 1;
3338   if (getintlist->First() != 1)
3339     return 2;
3340   if (getintlist->Last() != 3)
3341     return 3;
3342   const TColStd_ListOfInteger& intlist = getintlist->List();
3343   TColStd_ListIteratorOfListOfInteger itr_intlist(intlist);
3344   for (; itr_intlist.More(); itr_intlist.Next())
3345   {
3346     if (itr_intlist.Value() != 1 &&
3347         itr_intlist.Value() != 2 &&
3348         itr_intlist.Value() != 3)
3349     {
3350       return 4;
3351     }
3352   }
3353   getintlist->Clear();
3354
3355   // TDataStd_RealList:
3356   // Set
3357   Handle(TDataStd_RealList) setdbllist = TDataStd_RealList::Set(doc->Main());
3358   setdbllist->Append(2.5);
3359   setdbllist->Prepend(1.5);
3360   setdbllist->InsertAfter(3.5, 2.5);
3361   setdbllist->InsertBefore(0.5, 1.5);
3362   setdbllist->Append(200.5);
3363   setdbllist->Remove(0.5);
3364   setdbllist->Remove(200.5);
3365   // Get
3366   Handle(TDataStd_RealList) getdbllist;
3367   if (!doc->Main().FindAttribute(TDataStd_RealList::GetID(), getdbllist))
3368     return 1;
3369   if (getdbllist->First() != 1.5)
3370     return 2;
3371   if (getdbllist->Last() != 3.5)
3372     return 3;
3373   const TColStd_ListOfReal& dbllist = getdbllist->List();
3374   TColStd_ListIteratorOfListOfReal itr_dbllist(dbllist);
3375   for (; itr_dbllist.More(); itr_dbllist.Next())
3376   {
3377     if (itr_dbllist.Value() != 1.5 &&
3378         itr_dbllist.Value() != 2.5 &&
3379         itr_dbllist.Value() != 3.5)
3380     {
3381       return 4;
3382     }
3383   }
3384   getdbllist->Clear();
3385
3386   // TDataStd_ExtStringList:
3387   // Set
3388   Handle(TDataStd_ExtStringList) setstrlist = TDataStd_ExtStringList::Set(doc->Main());
3389   setstrlist->Append("Hello");
3390   setstrlist->Prepend("Guten Tag");
3391   setstrlist->InsertAfter("Bonjour", "Guten Tag");
3392   setstrlist->InsertBefore("Bonsoir", "Hello");
3393   setstrlist->Append("Good bye");
3394   setstrlist->Remove("Bonsoir");
3395   setstrlist->Remove("Good bye");
3396   // Get
3397   Handle(TDataStd_ExtStringList) getstrlist;
3398   if (!doc->Main().FindAttribute(TDataStd_ExtStringList::GetID(), getstrlist))
3399     return 1;
3400   if (getstrlist->First() != "Guten Tag")
3401     return 2;
3402   if (getstrlist->Last() != "Hello")
3403     return 3;
3404   const TDataStd_ListOfExtendedString& strlist = getstrlist->List();
3405   TDataStd_ListIteratorOfListOfExtendedString itr_strlist(strlist);
3406   for (; itr_strlist.More(); itr_strlist.Next())
3407   {
3408     if (itr_strlist.Value() != "Guten Tag" &&
3409         itr_strlist.Value() != "Bonjour" &&
3410         itr_strlist.Value() != "Hello")
3411     {
3412       return 4;
3413     }
3414   }
3415   getstrlist->Clear();
3416
3417   // TDataStd_BooleanList:
3418   // Set
3419   Handle(TDataStd_BooleanList) setboollist = TDataStd_BooleanList::Set(doc->Main());
3420   setboollist->Append(Standard_True);
3421   setboollist->Prepend(Standard_False);
3422   // Get
3423   Handle(TDataStd_BooleanList) getboollist;
3424   if (!doc->Main().FindAttribute(TDataStd_BooleanList::GetID(), getboollist))
3425     return 1;
3426   if (getboollist->First() != Standard_False)
3427     return 2;
3428   if (getboollist->Last() != Standard_True)
3429     return 3;
3430   const TDataStd_ListOfByte& boollist = getboollist->List();
3431   for (TDataStd_ListIteratorOfListOfByte itr_boollist(boollist); itr_boollist.More(); itr_boollist.Next())
3432   {
3433     if (itr_boollist.Value() != 1
3434      && itr_boollist.Value() != 0)
3435     {
3436       return 4;
3437     }
3438   }
3439   getboollist->Clear();
3440
3441   // TDataStd_ReferenceList:
3442   TDF_Label L1 = doc->Main().FindChild(100);
3443   TDF_Label L2 = doc->Main().FindChild(101);
3444   TDF_Label L3 = doc->Main().FindChild(102);
3445   TDF_Label L4 = doc->Main().FindChild(103);
3446   TDF_Label L5 = doc->Main().FindChild(104);
3447   // Set
3448   Handle(TDataStd_ReferenceList) setreflist = TDataStd_ReferenceList::Set(doc->Main());
3449   setreflist->Append(L1);
3450   setreflist->Prepend(L2);
3451   setreflist->InsertAfter(L3, L2);
3452   setreflist->InsertBefore(L4, L1);
3453   setreflist->Append(L5);
3454   setreflist->Remove(L4);
3455   setreflist->Remove(L5);
3456   // Get
3457   Handle(TDataStd_ReferenceList) getreflist;
3458   if (!doc->Main().FindAttribute(TDataStd_ReferenceList::GetID(), getreflist))
3459     return 1;
3460   if (getreflist->First() != L2)
3461     return 2;
3462   if (getreflist->Last() != L1)
3463     return 3;
3464   const TDF_LabelList& reflist = getreflist->List();
3465   TDF_ListIteratorOfLabelList itr_reflist(reflist);
3466   for (; itr_reflist.More(); itr_reflist.Next())
3467   {
3468     if (itr_reflist.Value() != L1 &&
3469         itr_reflist.Value() != L2 &&
3470         itr_reflist.Value() != L3)
3471     {
3472       return 4;
3473     }
3474   }
3475   getreflist->Clear();
3476
3477   // TDataStd_BooleanArray:
3478   // Set
3479   Handle(TDataStd_BooleanArray) setboolarr = TDataStd_BooleanArray::Set(doc->Main(), 12, 16);
3480   setboolarr->SetValue(12, Standard_True);
3481   setboolarr->SetValue(13, Standard_False);
3482   setboolarr->SetValue(14, Standard_False);
3483   setboolarr->SetValue(15, Standard_False);
3484   setboolarr->SetValue(16, Standard_True);
3485   setboolarr->SetValue(14, Standard_True);
3486   // Get
3487   Handle(TDataStd_BooleanArray) getboolarr;
3488   if (!doc->Main().FindAttribute(TDataStd_BooleanArray::GetID(), getboolarr))
3489     return 1;
3490   if (getboolarr->Value(12) != Standard_True)
3491     return 2;
3492   if (getboolarr->Value(13) != Standard_False)
3493     return 2;
3494   if (getboolarr->Value(14) != Standard_True)
3495     return 2;
3496   if (getboolarr->Value(15) != Standard_False)
3497     return 2;
3498   if (getboolarr->Value(16) != Standard_True)
3499     return 2;
3500
3501   // TDataStd_ReferenceArray:
3502   // Set
3503   Handle(TDataStd_ReferenceArray) setrefarr = TDataStd_ReferenceArray::Set(doc->Main(), 0, 4);
3504   setrefarr->SetValue(0, L1);
3505   setrefarr->SetValue(1, L2);
3506   setrefarr->SetValue(2, L3);
3507   setrefarr->SetValue(3, L4);
3508   setrefarr->SetValue(4, L5);
3509   // Get
3510   Handle(TDataStd_ReferenceArray) getrefarr;
3511   if (!doc->Main().FindAttribute(TDataStd_ReferenceArray::GetID(), getrefarr))
3512     return 1;
3513   if (getrefarr->Value(0) != L1)
3514     return 2;
3515   if (getrefarr->Value(1) != L2)
3516     return 2;
3517   if (getrefarr->Value(2) != L3)
3518     return 2;
3519   if (getrefarr->Value(3) != L4)
3520     return 2;
3521   if (getrefarr->Value(4) != L5)
3522     return 2;
3523
3524   // TDataStd_ByteArray:
3525   // Set
3526   Handle(TDataStd_ByteArray) setbytearr = TDataStd_ByteArray::Set(doc->Main(), 12, 16);
3527   setbytearr->SetValue(12, 0);
3528   setbytearr->SetValue(13, 1);
3529   setbytearr->SetValue(14, 2);
3530   setbytearr->SetValue(15, 3);
3531   setbytearr->SetValue(16, 255);
3532   // Get
3533   Handle(TDataStd_ByteArray) getbytearr;
3534   if (!doc->Main().FindAttribute(TDataStd_ByteArray::GetID(), getbytearr))
3535     return 1;
3536   if (getbytearr->Value(12) != 0)
3537     return 2;
3538   if (getbytearr->Value(13) != 1)
3539     return 2;
3540   if (getbytearr->Value(14) != 2)
3541     return 2;
3542   if (getbytearr->Value(15) != 3)
3543     return 2;
3544   if (getbytearr->Value(16) != 255)
3545     return 2;
3546   
3547   // TDataStd_NamedData:
3548   // Set:
3549   Handle(TDataStd_NamedData) setnd = TDataStd_NamedData::Set(doc->Main());
3550   setnd->SetInteger("Integer1", 1);
3551   setnd->SetInteger("Integer2", 2);
3552   setnd->SetInteger("Integer3", 8);
3553   setnd->SetInteger("Integer3", 3);
3554   // Get:
3555   Handle(TDataStd_NamedData) getnd;
3556   if (!doc->Main().FindAttribute(TDataStd_NamedData::GetID(), getnd))
3557     return 1;
3558   if (!getnd->HasIntegers())
3559     return 2;
3560   if (!getnd->HasInteger("Integer1"))
3561     return 3;
3562   if (getnd->GetInteger("Integer2") != 2)
3563     return 4;
3564   if (getnd->GetInteger("Integer3") != 3)
3565     return 4;
3566
3567   return 0;
3568 }
3569
3570 int TestUndoRedo(const Handle(TDocStd_Document)& doc)
3571 {
3572   // TDataStd_Tick:
3573   doc->OpenCommand();
3574   Handle(TDataStd_Tick) tick = TDataStd_Tick::Set(doc->Main());
3575   doc->CommitCommand();
3576   if (!doc->Main().IsAttribute(TDataStd_Tick::GetID()))
3577     return 1;
3578   doc->Undo();
3579   if (doc->Main().IsAttribute(TDataStd_Tick::GetID()))
3580     return 2;
3581   doc->Redo();
3582   if (!doc->Main().IsAttribute(TDataStd_Tick::GetID()))
3583     return 3;
3584
3585   // TDataStd_IntegerList:
3586   doc->OpenCommand();
3587   Handle(TDataStd_IntegerList) intlist = TDataStd_IntegerList::Set(doc->Main());
3588   intlist->Append(2);
3589   intlist->Prepend(1);
3590   intlist->InsertBefore(0, 1);
3591   intlist->InsertAfter(3, 2);
3592   doc->CommitCommand();
3593   if (!doc->Main().IsAttribute(TDataStd_IntegerList::GetID()))
3594     return 1;
3595   doc->Undo();
3596   if (!intlist->IsEmpty())
3597     return 2;
3598   doc->Redo();
3599   if (!intlist->Extent())
3600     return 3;
3601   if (intlist->First() != 0)
3602     return 4;
3603   if (intlist->Last() != 3)
3604     return 5;
3605   intlist->Clear();
3606
3607   // TDataStd_RealList:
3608   doc->OpenCommand();
3609   Handle(TDataStd_RealList) dbllist = TDataStd_RealList::Set(doc->Main());
3610   dbllist->Append(2.5);
3611   dbllist->Prepend(1.5);
3612   dbllist->InsertBefore(0.5, 1.5);
3613   dbllist->InsertAfter(3.5, 2.5);
3614   doc->CommitCommand();
3615   if (!doc->Main().IsAttribute(TDataStd_RealList::GetID()))
3616     return 1;
3617   doc->Undo();
3618   if (!dbllist->IsEmpty())
3619     return 2;
3620   doc->Redo();
3621   if (!dbllist->Extent())
3622     return 3;
3623   if (dbllist->First() != 0.5)
3624     return 4;
3625   if (dbllist->Last() != 3.5)
3626     return 5;
3627   dbllist->Clear();
3628
3629   // TDataStd_ExtStringList:
3630   doc->OpenCommand();
3631   Handle(TDataStd_ExtStringList) strlist = TDataStd_ExtStringList::Set(doc->Main());
3632   strlist->Append("Hello");
3633   strlist->Prepend("Guten Tag");
3634   strlist->InsertAfter("Bonjour", "Guten Tag");
3635   strlist->InsertBefore("Bonsoir", "Hello");
3636   doc->CommitCommand();
3637   if (!doc->Main().IsAttribute(TDataStd_ExtStringList::GetID()))
3638     return 1;
3639   doc->Undo();
3640   if (!strlist->IsEmpty())
3641     return 2;
3642   doc->Redo();
3643   if (!strlist->Extent())
3644     return 3;
3645   if (strlist->First() != "Guten Tag")
3646     return 4;
3647   if (strlist->Last() != "Hello")
3648     return 5;
3649   strlist->Clear();
3650
3651   // TDataStd_BooleanList:
3652   doc->OpenCommand();
3653   Handle(TDataStd_BooleanList) boollist = TDataStd_BooleanList::Set(doc->Main());
3654   boollist->Append(Standard_True);
3655   boollist->Prepend(Standard_False);
3656   doc->CommitCommand();
3657   if (!doc->Main().IsAttribute(TDataStd_BooleanList::GetID()))
3658     return 1;
3659   doc->Undo();
3660   if (!boollist->IsEmpty())
3661     return 2;
3662   doc->Redo();
3663   if (!boollist->Extent())
3664     return 3;
3665   if (boollist->First() != Standard_False)
3666     return 4;
3667   if (boollist->Last() != Standard_True)
3668     return 5;
3669   boollist->Clear();
3670
3671   // TDataStd_ReferenceList:
3672   TDF_Label L1 = doc->Main().FindChild(100);
3673   TDF_Label L2 = doc->Main().FindChild(101);
3674   TDF_Label L3 = doc->Main().FindChild(102);
3675   TDF_Label L4 = doc->Main().FindChild(103);
3676   doc->OpenCommand();
3677   Handle(TDataStd_ReferenceList) reflist = TDataStd_ReferenceList::Set(doc->Main());
3678   reflist->Append(L1);
3679   reflist->Prepend(L2);
3680   reflist->InsertBefore(L3, L1);
3681   reflist->InsertAfter(L4, L2);
3682   doc->CommitCommand();
3683   if (!doc->Main().IsAttribute(TDataStd_ReferenceList::GetID()))
3684     return 1;
3685   doc->Undo();
3686   if (!reflist->IsEmpty())
3687     return 2;
3688   doc->Redo();
3689   if (!reflist->Extent())
3690     return 3;
3691   if (reflist->First() != L2)
3692     return 4;
3693   if (reflist->Last() != L1)
3694     return 5;
3695   reflist->Clear();
3696
3697   // TDataStd_BooleanArray:
3698   doc->OpenCommand();
3699   Handle(TDataStd_BooleanArray) boolarr = TDataStd_BooleanArray::Set(doc->Main(), 23, 25);
3700   boolarr->SetValue(23, Standard_True);
3701   boolarr->SetValue(25, Standard_True);
3702   doc->CommitCommand();
3703   doc->OpenCommand();
3704   boolarr = TDataStd_BooleanArray::Set(doc->Main(), 230, 250);
3705   boolarr->SetValue(230, Standard_True);
3706   boolarr->SetValue(250, Standard_True);  
3707   doc->CommitCommand();
3708   doc->Undo();
3709   if (boolarr->Value(23) != Standard_True)
3710     return 2;
3711   if (boolarr->Value(24) != Standard_False)
3712     return 2;
3713   if (boolarr->Value(25) != Standard_True)
3714     return 2;
3715   doc->Redo();
3716   if (boolarr->Value(230) != Standard_True)
3717     return 3;
3718   if (boolarr->Value(240) != Standard_False)
3719     return 3;
3720   if (boolarr->Value(250) != Standard_True)
3721     return 3;
3722
3723   // TDataStd_ReferenceArray:
3724   doc->OpenCommand();
3725   Handle(TDataStd_ReferenceArray) refarr = TDataStd_ReferenceArray::Set(doc->Main(), 5, 8);
3726   refarr->SetValue(5, L1);
3727   refarr->SetValue(6, L2);
3728   refarr->SetValue(7, L3);
3729   refarr->SetValue(8, L4);
3730   doc->CommitCommand();
3731   if (!doc->Main().IsAttribute(TDataStd_ReferenceArray::GetID()))
3732     return 1;
3733   doc->Undo();
3734   doc->Redo();
3735   if (refarr->Value(5) != L1)
3736     return 4;
3737   if (refarr->Value(6) != L2)
3738     return 4;
3739   if (refarr->Value(7) != L3)
3740     return 4;
3741   if (refarr->Value(8) != L4)
3742     return 4;
3743
3744   // TDataStd_ByteArray:
3745   doc->OpenCommand();
3746   Handle(TDataStd_ByteArray) bytearr = TDataStd_ByteArray::Set(doc->Main(), 23, 25);
3747   bytearr->SetValue(23, 23);
3748   bytearr->SetValue(25, 25);
3749   doc->CommitCommand();
3750   doc->OpenCommand();
3751   bytearr = TDataStd_ByteArray::Set(doc->Main(), 230, 250);
3752   bytearr->SetValue(230, 230);
3753   bytearr->SetValue(250, 250);  
3754   doc->CommitCommand();
3755   doc->Undo();
3756   if (bytearr->Value(23) != 23)
3757     return 2;
3758   if (bytearr->Value(25) != 25)
3759     return 2;
3760   doc->Redo();
3761   if (bytearr->Value(230) != 230)
3762     return 3;
3763   if (bytearr->Value(250) != 250)
3764     return 3;
3765
3766   // TDataStd_NamedData:
3767   doc->OpenCommand();
3768   Handle(TDataStd_NamedData) nd = TDataStd_NamedData::Set(doc->Main());
3769   nd->SetByte("b14", 12);
3770   nd->SetByte("b17", 18);
3771   nd->SetByte("b14", 14);
3772   nd->SetByte("b17", 17);
3773   doc->CommitCommand();
3774   doc->OpenCommand();
3775   nd = TDataStd_NamedData::Set(doc->Main());
3776   nd->SetReal("r14", 14);
3777   nd->SetReal("r17", 17);
3778   nd->SetReal("r14", 14.4);
3779   nd->SetReal("r17", 17.7);
3780   doc->CommitCommand();
3781   doc->Undo();
3782   if (nd->HasStrings())
3783     return 1;
3784   if (nd->HasReals())
3785     return 1;
3786   if (nd->HasReal("r17"))
3787     return 2;
3788   if (!nd->HasBytes())
3789     return 3;
3790   if (nd->GetByte("b14") != 14)
3791     return 4;
3792   if (nd->GetByte("b17") != 17)
3793     return 4;
3794   if (nd->HasByte("b18"))
3795     return 5;
3796   doc->Redo();
3797   if (!nd->HasBytes())
3798     return 1;
3799   if (!nd->HasReals())
3800     return 1;
3801   if (nd->GetByte("b14") != 14)
3802     return 2;
3803   if (nd->GetReal("r14") != 14.4)
3804     return 2;
3805   if (nd->GetReal("r17") != 17.7)
3806     return 2;
3807
3808   return 0;
3809 }
3810
3811 int TestCopyPaste(const Handle(TDocStd_Document)& doc)
3812 {
3813   TDF_Label L1 = doc->Main().FindChild(1);
3814   TDF_Label L2 = doc->Main().FindChild(2);
3815   TDF_CopyLabel copier(L1, L2);
3816
3817   // TDataStd_Tick:
3818   TDataStd_Tick::Set(L1);
3819   copier.Perform();
3820   if (!copier.IsDone())
3821     return 1;
3822   if (!L2.IsAttribute(TDataStd_Tick::GetID()))
3823     return 2;
3824
3825   // TDataStd_IntegerList:
3826   Handle(TDataStd_IntegerList) intlist = TDataStd_IntegerList::Set(L1);
3827   intlist->Append(1);
3828   intlist->InsertAfter(2, 1);
3829   copier.Perform();
3830   if (!copier.IsDone())
3831     return 1;
3832   intlist->Clear();
3833   intlist.Nullify();
3834   if (!L2.FindAttribute(TDataStd_IntegerList::GetID(), intlist))
3835     return 2;
3836   if (intlist->First() != 1)
3837     return 3;
3838   if (intlist->Last() != 2)
3839     return 4;
3840   intlist->Clear();
3841
3842   // TDataStd_RealList:
3843   Handle(TDataStd_RealList) dbllist = TDataStd_RealList::Set(L1);
3844   dbllist->Append(1.5);
3845   dbllist->InsertAfter(2.5, 1.5);
3846   copier.Perform();
3847   if (!copier.IsDone())
3848     return 1;
3849   dbllist->Clear();
3850   dbllist.Nullify();
3851   if (!L2.FindAttribute(TDataStd_RealList::GetID(), dbllist))
3852     return 2;
3853   if (dbllist->First() != 1.5)
3854     return 3;
3855   if (dbllist->Last() != 2.5)
3856     return 4;
3857   dbllist->Clear();
3858
3859   // TDataStd_ExtStringList:
3860   Handle(TDataStd_ExtStringList) strlist = TDataStd_ExtStringList::Set(L1);
3861   strlist->Append("Open CASCADE");
3862   strlist->InsertAfter(" - is the best set of libraries!", "Open CASCADE");
3863   copier.Perform();
3864   if (!copier.IsDone())
3865     return 1;
3866   strlist->Clear();
3867   strlist.Nullify();
3868   if (!L2.FindAttribute(TDataStd_ExtStringList::GetID(), strlist))
3869     return 2;
3870   if (strlist->First() != "Open CASCADE")
3871     return 3;
3872   if (strlist->Last() != " - is the best set of libraries!")
3873     return 4;
3874   strlist->Clear();
3875
3876   // TDataStd_BooleanList:
3877   Handle(TDataStd_BooleanList) boollist = TDataStd_BooleanList::Set(L1);
3878   boollist->Append(Standard_True);
3879   boollist->Prepend(Standard_False);
3880   copier.Perform();
3881   if (!copier.IsDone())
3882     return 1;
3883   boollist->Clear();
3884   boollist.Nullify();
3885   if (!L2.FindAttribute(TDataStd_BooleanList::GetID(), boollist))
3886     return 2;
3887   if (boollist->First() != Standard_False)
3888     return 3;
3889   if (boollist->Last() != Standard_True)
3890     return 4;
3891   boollist->Clear();
3892
3893   // TDataStd_ReferenceList:
3894   TDF_Label L100 = doc->Main().FindChild(100);
3895   TDF_Label L101 = doc->Main().FindChild(101);
3896   Handle(TDataStd_ReferenceList) reflist = TDataStd_ReferenceList::Set(L1);
3897   reflist->Append(L100);
3898   reflist->InsertAfter(L101, L100);
3899   copier.Perform();
3900   if (!copier.IsDone())
3901     return 1;
3902   reflist->Clear();
3903   reflist.Nullify();
3904   if (!L2.FindAttribute(TDataStd_ReferenceList::GetID(), reflist))
3905     return 2;
3906   if (reflist->First() != L100)
3907     return 3;
3908   if (reflist->Last() != L101)
3909     return 4;
3910   reflist->Clear();
3911
3912   // TDataStd_BooleanArray:
3913   Handle(TDataStd_BooleanArray) boolarr = TDataStd_BooleanArray::Set(L1, 4, 6);
3914   boolarr->SetValue(4, Standard_True);
3915   boolarr->SetValue(6, Standard_True);
3916   copier.Perform();
3917   if (!copier.IsDone())
3918     return 1;
3919   boolarr.Nullify();
3920   if (!L2.FindAttribute(TDataStd_BooleanArray::GetID(), boolarr))
3921     return 2;
3922   if (boolarr->Value(4) != Standard_True)
3923     return 3;
3924   if (boolarr->Value(5) != Standard_False)
3925     return 3;
3926   if (boolarr->Value(6) != Standard_True)
3927     return 3;
3928
3929   // TDataStd_ReferenceArray:
3930   Handle(TDataStd_ReferenceArray) refarr = TDataStd_ReferenceArray::Set(L1, 3, 4);
3931   refarr->SetValue(3, L100);
3932   refarr->SetValue(4, L101);
3933   copier.Perform();
3934   if (!copier.IsDone())
3935     return 1;
3936   refarr.Nullify();
3937   if (!L2.FindAttribute(TDataStd_ReferenceArray::GetID(), refarr))
3938     return 2;
3939   if (refarr->Value(3) != L100)
3940     return 3;
3941   if (refarr->Value(4) != L101)
3942     return 3;
3943
3944   // TDataStd_ByteArray:
3945   Handle(TDataStd_ByteArray) bytearr = TDataStd_ByteArray::Set(L1, 4, 6);
3946   bytearr->SetValue(4, 40);
3947   bytearr->SetValue(6, 60);
3948   copier.Perform();
3949   if (!copier.IsDone())
3950     return 1;
3951   bytearr.Nullify();
3952   if (!L2.FindAttribute(TDataStd_ByteArray::GetID(), bytearr))
3953     return 2;
3954   if (bytearr->Value(4) != 40)
3955     return 3;
3956   if (bytearr->Value(6) != 60)
3957     return 3;
3958
3959   // TDataStd_NamedData:
3960   Handle(TDataStd_NamedData) nd = TDataStd_NamedData::Set(L1);
3961   nd->SetInteger("Integer1", 11);
3962   nd->SetReal("Real1", 11.1);
3963   nd->SetString("String1", "11.11111111");
3964   nd->SetByte("Byte1", 111);
3965   Handle(TColStd_HArray1OfInteger) ints_arr = new TColStd_HArray1OfInteger(4, 5);
3966   ints_arr->SetValue(4, 4);
3967   ints_arr->SetValue(5, 5);
3968   nd->SetArrayOfIntegers("Integers1", ints_arr);
3969   copier.Perform();
3970   if (!copier.IsDone())
3971     return 1;
3972   nd.Nullify();
3973   if (!L2.FindAttribute(TDataStd_NamedData::GetID(), nd))
3974     return 2;
3975   if (!nd->HasIntegers())
3976     return 3;
3977   if (!nd->HasReals())
3978     return 3;
3979   if (!nd->HasStrings())
3980     return 3;
3981   if (!nd->HasBytes())
3982     return 3;
3983   if (!nd->HasArraysOfIntegers())
3984     return 3;
3985   if (nd->HasArraysOfReals())
3986     return 3;
3987   if (!nd->HasInteger("Integer1"))
3988     return 4;
3989   if (nd->GetInteger("Integer1") != 11)
3990     return 4;
3991   if (!nd->HasReal("Real1"))
3992     return 4;
3993   if (nd->GetReal("Real1") != 11.1)
3994     return 4;
3995   if (!nd->HasString("String1"))
3996     return 4;
3997   if (nd->GetString("String1") != "11.11111111")
3998     return 4;
3999   if (!nd->HasByte("Byte1"))
4000     return 4;
4001   if (nd->GetByte("Byte1") != 111)
4002     return 4;
4003   if (!nd->HasArrayOfIntegers("Integers1"))
4004     return 4;
4005   const Handle(TColStd_HArray1OfInteger)& ints_arr_out = nd->GetArrayOfIntegers("Integers1");
4006   if (ints_arr_out.IsNull())
4007     return 4;
4008   if (ints_arr_out->Value(5) != 5)
4009     return 4;
4010
4011   return 0;
4012 }
4013
4014 int TestOpenSave(TCollection_ExtendedString aFile1,
4015                  TCollection_ExtendedString aFile2,
4016                  TCollection_ExtendedString aFile3)
4017 {
4018   // Std
4019   Handle(TDocStd_Document) doc_std, doc_std_open;
4020   app->NewDocument("BinOcaf", doc_std);
4021   // TDataStd_Tick:
4022   TDataStd_Tick::Set(doc_std->Main());
4023   // TDataStd_IntegerList:
4024   Handle(TDataStd_IntegerList) intlist = TDataStd_IntegerList::Set(doc_std->Main());
4025   intlist->Append(1);
4026   intlist->Append(5);
4027   // TDataStd_RealList:
4028   Handle(TDataStd_RealList) dbllist = TDataStd_RealList::Set(doc_std->Main());
4029   dbllist->Append(1.5);
4030   dbllist->Append(5.5);
4031   // TDataStd_ExtStringList:
4032   Handle(TDataStd_ExtStringList) strlist = TDataStd_ExtStringList::Set(doc_std->Main());
4033   strlist->Append("Auf");
4034   strlist->Append("Wiedersehen");
4035   // TDataStd_BooleanList:
4036   Handle(TDataStd_BooleanList) boollist = TDataStd_BooleanList::Set(doc_std->Main());
4037   boollist->Append(Standard_False);
4038   boollist->Append(Standard_True);
4039   // TDataStd_ReferenceList:
4040   TCollection_AsciiString entry1, entry2, entry_first, entry_last;
4041   TDF_Label Lstd1 = doc_std->Main().FindChild(100);
4042   TDF_Tool::Entry(Lstd1, entry1);
4043   TDF_Label Lstd2 = doc_std->Main().FindChild(101);
4044   TDF_Tool::Entry(Lstd2, entry2);
4045   Handle(TDataStd_ReferenceList) reflist = TDataStd_ReferenceList::Set(doc_std->Main());
4046   reflist->Append(Lstd1);
4047   reflist->Append(Lstd2);
4048   // TDataStd_BooleanArray:
4049   Handle(TDataStd_BooleanArray) boolarr = TDataStd_BooleanArray::Set(doc_std->Main(), 15, 18);
4050   boolarr->SetValue(15, Standard_False);
4051   boolarr->SetValue(16, Standard_True);
4052   boolarr->SetValue(17, Standard_True);
4053   boolarr->SetValue(18, Standard_True);
4054   // TDataStd_ReferenceArray:
4055   Handle(TDataStd_ReferenceArray) refarr = TDataStd_ReferenceArray::Set(doc_std->Main(), 45, 46);
4056   refarr->SetValue(45, Lstd1);
4057   refarr->SetValue(46, Lstd2);
4058   // TDataStd_ByteArray:
4059   Handle(TDataStd_ByteArray) bytearr = TDataStd_ByteArray::Set(doc_std->Main(), 15, 18);
4060   bytearr->SetValue(15, 150);
4061   bytearr->SetValue(16, 160);
4062   bytearr->SetValue(17, 170);
4063   bytearr->SetValue(18, 180);
4064   // TDataStd_NamedData:
4065   Handle(TDataStd_NamedData) nameddata = TDataStd_NamedData::Set(doc_std->Main());
4066   // TDF_Reference:
4067   TDF_Label Lstd3 = doc_std->Main().FindChild(103);
4068   Handle(TDF_Reference) ref = TDF_Reference::Set(doc_std->Main(), Lstd3);
4069   // 
4070   // Save
4071   //if (app->SaveAs(doc_std, "W:\\doc.std") != PCDM_SS_OK)
4072   if (app->SaveAs(doc_std, aFile1) != PCDM_SS_OK)
4073     return 1;
4074   intlist.Nullify();
4075   dbllist.Nullify();
4076   strlist.Nullify();
4077   boollist.Nullify();
4078   reflist.Nullify();
4079   boolarr.Nullify();
4080   ref.Nullify();
4081   app->Close(doc_std);
4082   doc_std.Nullify();
4083   //if (app->Open("W:\\doc.std", doc_std_open) != PCDM_RS_OK)
4084   if (app->Open(aFile1, doc_std_open) != PCDM_RS_OK)
4085     return 2;
4086   if (!doc_std_open->Main().IsAttribute(TDataStd_Tick::GetID()))
4087     return 3;
4088   if (!doc_std_open->Main().FindAttribute(TDataStd_IntegerList::GetID(), intlist))
4089     return 4;
4090   if (intlist->First() != 1)
4091     return 5;
4092   if (intlist->Last() != 5)
4093     return 6;
4094   if (!doc_std_open->Main().FindAttribute(TDataStd_RealList::GetID(), dbllist))
4095     return 4;
4096   if (dbllist->First() != 1.5)
4097     return 5;
4098   if (dbllist->Last() != 5.5)
4099     return 6;
4100   if (!doc_std_open->Main().FindAttribute(TDataStd_ExtStringList::GetID(), strlist))
4101     return 4;
4102   if (strlist->First() != "Auf")
4103     return 5;
4104   if (strlist->Last() != "Wiedersehen")
4105     return 6;
4106   if (!doc_std_open->Main().FindAttribute(TDataStd_BooleanList::GetID(), boollist))
4107     return 4;
4108   if (boollist->First() != Standard_False)
4109     return 5;
4110   if (boollist->Last() != Standard_True)
4111     return 6;
4112   if (!doc_std_open->Main().FindAttribute(TDataStd_ReferenceList::GetID(), reflist))
4113     return 4;
4114   TDF_Tool::Entry(reflist->First(), entry_first);
4115   if (entry1 != entry_first)
4116     return 5;
4117   TDF_Tool::Entry(reflist->Last(), entry_last);
4118   if (entry2 != entry_last)
4119     return 6;
4120   if (!doc_std_open->Main().FindAttribute(TDataStd_BooleanArray::GetID(), boolarr))
4121     return 4;
4122   if (boolarr->Value(15) != Standard_False)
4123     return 5;
4124   if (boolarr->Value(16) != Standard_True)
4125     return 5;
4126   if (boolarr->Value(17) != Standard_True)
4127     return 5;
4128   if (boolarr->Value(18) != Standard_True)
4129     return 5;
4130   if (!doc_std_open->Main().FindAttribute(TDataStd_ReferenceArray::GetID(), refarr))
4131     return 4;
4132   TDF_Tool::Entry(refarr->Value(45), entry_first);
4133   if (entry1 != entry_first)
4134     return 5;
4135   TDF_Tool::Entry(refarr->Value(46), entry_last);
4136   if (entry2 != entry_last)
4137     return 6;
4138   if (!doc_std_open->Main().FindAttribute(TDataStd_ByteArray::GetID(), bytearr))
4139     return 4;
4140   if (bytearr->Value(15) != 150)
4141     return 5;
4142   if (bytearr->Value(16) != 160)
4143     return 5;
4144   if (bytearr->Value(17) != 170)
4145     return 5;
4146   if (bytearr->Value(18) != 180)
4147     return 5;
4148   if (!doc_std_open->Main().FindAttribute(TDF_Reference::GetID(), ref))
4149     return 4;
4150   if (ref->Get().IsNull())
4151     return 5;
4152   if (ref->Get().Tag() != 103)
4153       return 5;
4154
4155   // Xml
4156   Handle(TDocStd_Document) doc_xml, doc_xml_open;
4157   app->NewDocument("XmlOcaf", doc_xml);
4158   // TDataStd_Tick:
4159   TDataStd_Tick::Set(doc_xml->Main());
4160   // TDataStd_IntegerList:
4161   intlist = TDataStd_IntegerList::Set(doc_xml->Main());
4162   intlist->Append(1);
4163   intlist->Append(5);
4164   // TDataStd_RealList:
4165   dbllist = TDataStd_RealList::Set(doc_xml->Main());
4166   dbllist->Append(1.5);
4167   dbllist->Append(5.5);
4168   // TDataStd_ExtStringList:
4169   strlist = TDataStd_ExtStringList::Set(doc_xml->Main());
4170   strlist->Append("Guten ");
4171   strlist->Append("Tag");
4172   // TDataStd_BooleanList:
4173   boollist = TDataStd_BooleanList::Set(doc_xml->Main());
4174   boollist->Append(Standard_False);
4175   boollist->Append(Standard_True);
4176   // TDataStd_ReferenceList:
4177   TDF_Label Lxml1 = doc_xml->Main().FindChild(100);
4178   TDF_Tool::Entry(Lxml1, entry1);
4179   TDF_Label Lxml2 = doc_xml->Main().FindChild(101);
4180   TDF_Tool::Entry(Lxml2, entry2);
4181   reflist = TDataStd_ReferenceList::Set(doc_xml->Main());
4182   reflist->Append(Lxml1);
4183   reflist->Append(Lxml2);
4184   // TDataStd_BooleanArray:
4185   boolarr = TDataStd_BooleanArray::Set(doc_xml->Main(), 15, 24);
4186   boolarr->SetValue(15, Standard_False);
4187   boolarr->SetValue(16, Standard_True);
4188   boolarr->SetValue(17, Standard_True);
4189   boolarr->SetValue(18, Standard_True);
4190   boolarr->SetValue(19, Standard_True);
4191   boolarr->SetValue(20, Standard_True);
4192   boolarr->SetValue(21, Standard_False);
4193   boolarr->SetValue(22, Standard_True);
4194   boolarr->SetValue(23, Standard_True);
4195   boolarr->SetValue(24, Standard_True);
4196   // TDataStd_ReferenceArray:
4197   refarr = TDataStd_ReferenceArray::Set(doc_xml->Main(), 444, 445);
4198   refarr->SetValue(444, Lxml1);
4199   refarr->SetValue(445, Lxml2);
4200   // TDataStd_ByteArray:
4201   bytearr = TDataStd_ByteArray::Set(doc_xml->Main(), 15, 24);
4202   bytearr->SetValue(15, 0);
4203   bytearr->SetValue(16, 10);
4204   bytearr->SetValue(17, 100);
4205   bytearr->SetValue(18, 200);
4206   bytearr->SetValue(19, 250);
4207   bytearr->SetValue(20, 251);
4208   bytearr->SetValue(21, 252);
4209   bytearr->SetValue(22, 253);
4210   bytearr->SetValue(23, 254);
4211   bytearr->SetValue(24, 255);
4212   // TDF_Reference:
4213   Lstd3 = doc_xml->Main().FindChild(103);
4214   ref = TDF_Reference::Set(doc_xml->Main(), Lstd3);
4215   // 
4216   // Save
4217   //if (app->SaveAs(doc_xml, "W:\\doc.xml") != PCDM_SS_OK)
4218   if (app->SaveAs(doc_xml, aFile2) != PCDM_SS_OK)
4219     return 1;
4220   intlist.Nullify();
4221   ref.Nullify();
4222   app->Close(doc_xml);
4223   doc_xml.Nullify();
4224   //if (app->Open("W:\\doc.xml", doc_xml_open) != PCDM_RS_OK)
4225   if (app->Open(aFile2, doc_xml_open) != PCDM_RS_OK)
4226     return 2;
4227   if (!doc_xml_open->Main().IsAttribute(TDataStd_Tick::GetID()))
4228     return 3;
4229   if (!doc_xml_open->Main().FindAttribute(TDataStd_IntegerList::GetID(), intlist))
4230     return 4;
4231   if (intlist->First() != 1)
4232     return 5;
4233   if (intlist->Last() != 5)
4234     return 6;
4235   if (!doc_xml_open->Main().FindAttribute(TDataStd_RealList::GetID(), dbllist))
4236     return 4;
4237   if (dbllist->First() != 1.5)
4238     return 5;
4239   if (dbllist->Last() != 5.5)
4240     return 6;
4241   if (!doc_xml_open->Main().FindAttribute(TDataStd_ExtStringList::GetID(), strlist))
4242     return 4;
4243   if (strlist->First() != "Guten ")
4244     return 5;
4245   if (strlist->Last() != "Tag")
4246     return 6;
4247   if (!doc_xml_open->Main().FindAttribute(TDataStd_BooleanList::GetID(), boollist))
4248     return 4;
4249   if (boollist->First() != Standard_False)
4250     return 5;
4251   if (boollist->Last() != Standard_True)
4252     return 6;
4253   if (!doc_xml_open->Main().FindAttribute(TDataStd_ReferenceList::GetID(), reflist))
4254     return 4;
4255   TDF_Tool::Entry(reflist->First(), entry_first);
4256   if (entry1 != entry_first)
4257     return 5;
4258   TDF_Tool::Entry(reflist->Last(), entry_last);
4259   if (entry2 != entry_last)
4260     return 6;
4261   if (!doc_xml_open->Main().FindAttribute(TDataStd_BooleanArray::GetID(), boolarr))
4262     return 4;
4263   if (boolarr->Value(15) != Standard_False)
4264     return 5;
4265   if (boolarr->Value(16) != Standard_True)
4266     return 5;
4267   if (boolarr->Value(17) != Standard_True)
4268     return 5;
4269   if (boolarr->Value(18) != Standard_True)
4270     return 5;
4271   if (boolarr->Value(19) != Standard_True)
4272     return 5;
4273   if (boolarr->Value(20) != Standard_True)
4274     return 5;
4275   if (boolarr->Value(21) != Standard_False)
4276     return 5;
4277   if (boolarr->Value(22) != Standard_True)
4278     return 5;
4279   if (boolarr->Value(23) != Standard_True)
4280     return 5;
4281   if (boolarr->Value(24) != Standard_True)
4282     return 5;
4283   if (!doc_xml_open->Main().FindAttribute(TDataStd_ReferenceArray::GetID(), refarr))
4284     return 4;
4285   TDF_Tool::Entry(refarr->Value(444), entry_first);
4286   if (entry1 != entry_first)
4287     return 5;
4288   TDF_Tool::Entry(refarr->Value(445), entry_last);
4289   if (entry2 != entry_last)
4290     return 6;
4291   if (!doc_xml_open->Main().FindAttribute(TDataStd_ByteArray::GetID(), bytearr))
4292     return 4;
4293   if (bytearr->Value(15) != 0)
4294     return 5;
4295   if (bytearr->Value(16) != 10)
4296     return 5;
4297   if (bytearr->Value(17) != 100)
4298     return 5;
4299   if (bytearr->Value(18) != 200)
4300     return 5;
4301   if (bytearr->Value(19) != 250)
4302     return 5;
4303   if (bytearr->Value(20) != 251)
4304     return 5;
4305   if (bytearr->Value(21) != 252)
4306     return 5;
4307   if (bytearr->Value(22) != 253)
4308     return 5;
4309   if (bytearr->Value(23) != 254)
4310     return 5;
4311   if (bytearr->Value(24) != 255)
4312     return 5;
4313   if (!doc_xml_open->Main().FindAttribute(TDF_Reference::GetID(), ref))
4314     return 4;
4315   if (ref->Get().IsNull())
4316     return 5;
4317   if (ref->Get().Tag() != 103)
4318       return 5;
4319
4320   // Bin
4321   Handle(TDocStd_Document) doc_bin, doc_bin_open;
4322   app->NewDocument("BinOcaf", doc_bin);
4323   // TDataStd_Tick:
4324   TDataStd_Tick::Set(doc_bin->Main());
4325   // TDataStd_IntegerList:
4326   intlist = TDataStd_IntegerList::Set(doc_bin->Main());
4327   intlist->Append(1);
4328   intlist->Append(5);
4329   // TDataStd_RealList:
4330   dbllist = TDataStd_RealList::Set(doc_bin->Main());
4331   dbllist->Append(1.5);
4332   dbllist->Append(5.5);
4333   // TDataStd_ExtStringList:
4334   strlist = TDataStd_ExtStringList::Set(doc_bin->Main());
4335   strlist->Append("Bonjour");
4336   strlist->Append("Bonsoir");
4337   // TDataStd_BooleanList:
4338   boollist = TDataStd_BooleanList::Set(doc_bin->Main());
4339   boollist->Append(Standard_False);
4340   boollist->Append(Standard_True);
4341   // TDataStd_ReferenceList:
4342   TDF_Label Lbin1 = doc_bin->Main().FindChild(100);
4343   TDF_Tool::Entry(Lbin1, entry1);
4344   TDF_Label Lbin2 = doc_bin->Main().FindChild(101);
4345   TDF_Tool::Entry(Lbin2, entry2);
4346   reflist = TDataStd_ReferenceList::Set(doc_bin->Main());
4347   reflist->Append(Lbin1);
4348   reflist->Append(Lbin2);
4349   // TDataStd_BooleanArray:
4350   boolarr = TDataStd_BooleanArray::Set(doc_bin->Main(), 15, 24);
4351   boolarr->SetValue(15, Standard_False);
4352   boolarr->SetValue(16, Standard_True);
4353   boolarr->SetValue(17, Standard_True);
4354   boolarr->SetValue(18, Standard_True);
4355   boolarr->SetValue(19, Standard_True);
4356   boolarr->SetValue(20, Standard_True);
4357   boolarr->SetValue(21, Standard_False);
4358   boolarr->SetValue(22, Standard_True);
4359   boolarr->SetValue(23, Standard_True);
4360   boolarr->SetValue(24, Standard_True);
4361   // TDataStd_ReferenceArray:
4362   refarr = TDataStd_ReferenceArray::Set(doc_bin->Main(), 0, 1);
4363   refarr->SetValue(0, Lbin1);
4364   refarr->SetValue(1, Lbin2);
4365   // TDataStd_ByteArray:
4366   bytearr = TDataStd_ByteArray::Set(doc_bin->Main(), 15, 16);
4367   bytearr->SetValue(15, 0);
4368   bytearr->SetValue(16, 255);
4369   // TDataStd_NamedData:
4370   nameddata = TDataStd_NamedData::Set(doc_bin->Main());
4371   nameddata->SetByte("A", 12);
4372   nameddata->SetByte("B", 234);
4373   // TDF_Reference:
4374   Lstd3 = doc_bin->Main().FindChild(103);
4375   ref = TDF_Reference::Set(doc_bin->Main(), Lstd3);
4376   // 
4377   // Save
4378   //if (app->SaveAs(doc_bin, "W:\\doc.cbf") != PCDM_SS_OK)
4379   if (app->SaveAs(doc_bin, aFile3) != PCDM_SS_OK)
4380     return 1;
4381   intlist.Nullify();
4382   ref.Nullify();
4383   app->Close(doc_bin);
4384   doc_bin.Nullify();
4385   //if (app->Open("W:\\doc.cbf", doc_bin_open) != PCDM_RS_OK)
4386   if (app->Open(aFile3, doc_bin_open) != PCDM_RS_OK)
4387     return 2;
4388   if (!doc_bin_open->Main().IsAttribute(TDataStd_Tick::GetID()))
4389     return 3;
4390   if (!doc_bin_open->Main().FindAttribute(TDataStd_IntegerList::GetID(), intlist))
4391     return 4;
4392   if (intlist->First() != 1)
4393     return 5;
4394   if (intlist->Last() != 5)
4395     return 6;
4396   if (!doc_bin_open->Main().FindAttribute(TDataStd_RealList::GetID(), dbllist))
4397     return 4;
4398   if (dbllist->First() != 1.5)
4399     return 5;
4400   if (dbllist->Last() != 5.5)
4401     return 6;
4402   if (!doc_bin_open->Main().FindAttribute(TDataStd_ExtStringList::GetID(), strlist))
4403     return 4;
4404   if (strlist->First() != "Bonjour")
4405     return 5;
4406   if (strlist->Last() != "Bonsoir")
4407     return 6;
4408   if (!doc_bin_open->Main().FindAttribute(TDataStd_BooleanList::GetID(), boollist))
4409     return 4;
4410   if (boollist->First() != Standard_False)
4411     return 5;
4412   if (boollist->Last() != Standard_True)
4413     return 6;
4414   if (!doc_bin_open->Main().FindAttribute(TDataStd_ReferenceList::GetID(), reflist))
4415     return 4;
4416   TDF_Tool::Entry(reflist->First(), entry_first);
4417   if (entry1 != entry_first)
4418     return 5;
4419   TDF_Tool::Entry(reflist->Last(), entry_last);
4420   if (entry2 != entry_last)
4421     return 6;
4422   if (!doc_bin_open->Main().FindAttribute(TDataStd_BooleanArray::GetID(), boolarr))
4423     return 4;
4424   if (boolarr->Value(15) != Standard_False)
4425     return 5;
4426   if (boolarr->Value(16) != Standard_True)
4427     return 5;
4428   if (boolarr->Value(17) != Standard_True)
4429     return 5;
4430   if (boolarr->Value(18) != Standard_True)
4431     return 5;
4432   if (boolarr->Value(19) != Standard_True)
4433     return 5;
4434   if (boolarr->Value(20) != Standard_True)
4435     return 5;
4436   if (boolarr->Value(21) != Standard_False)
4437     return 5;
4438   if (boolarr->Value(22) != Standard_True)
4439     return 5;
4440   if (boolarr->Value(23) != Standard_True)
4441     return 5;
4442   if (boolarr->Value(24) != Standard_True)
4443     return 5;
4444   if (!doc_bin_open->Main().FindAttribute(TDataStd_ReferenceArray::GetID(), refarr))
4445     return 4;
4446   TDF_Tool::Entry(refarr->Value(0), entry_first);
4447   if (entry1 != entry_first)
4448     return 5;
4449   TDF_Tool::Entry(refarr->Value(1), entry_last);
4450   if (entry2 != entry_last)
4451     return 6;
4452   if (!doc_bin_open->Main().FindAttribute(TDataStd_ByteArray::GetID(), bytearr))
4453     return 4;
4454   if (bytearr->Value(15) != 0)
4455     return 5;
4456   if (bytearr->Value(16) != 255)
4457     return 5;
4458   if (!doc_bin_open->Main().FindAttribute(TDataStd_NamedData::GetID(), nameddata))
4459     return 4;
4460   if (nameddata->GetByte("A") != 12)
4461     return 5;
4462   if (nameddata->GetByte("B") != 234)
4463     return 5;
4464   if (!doc_bin_open->Main().FindAttribute(TDF_Reference::GetID(), ref))
4465     return 4;
4466   if (ref->Get().IsNull())
4467     return 5;
4468   if (ref->Get().Tag() != 103)
4469       return 5;
4470
4471   return 0;
4472 }
4473 // For OCC16782 testing
4474
4475 static Standard_Integer OCC16782 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4476 {
4477   if (argc != 4)
4478   {
4479     di << "Usage : " << argv[0] << " file.std file.xml file.cbf\n";
4480     return 1;
4481   }
4482   TCollection_ExtendedString aFile1(argv[1]);
4483   TCollection_ExtendedString aFile2(argv[2]);
4484   TCollection_ExtendedString aFile3(argv[3]);
4485
4486   if (app.IsNull())
4487     app = new AppStd_Application();
4488
4489   int good = 0;
4490   
4491   Handle(TDocStd_Document) doc;
4492   app->NewDocument("BinOcaf", doc);
4493   doc->SetUndoLimit(10);
4494
4495   di <<"\nTestSetGet start\n";
4496   good += TestSetGet(doc);
4497   di <<"TestSetGet finish\n";
4498   di <<"Status = " << good << "\n";
4499
4500   di <<"\nTestUndoRedo start\n";
4501   good += TestUndoRedo(doc);
4502   di <<"TestUndoRedo finish\n";
4503   di <<"Status = " << good << "\n";
4504
4505   di <<"\nTestCopyPaste start\n";
4506   good += TestCopyPaste(doc);
4507   di <<"TestCopyPaste finish\n";
4508   di <<"Status = " << good << "\n";
4509
4510   di <<"\nTestOpenSave start\n";
4511   good += TestOpenSave(aFile1, aFile2, aFile3);
4512   di <<"TestOpenSave finish\n";
4513   di <<"Status = " << good << "\n";
4514
4515   if (!good)
4516     di <<"\nThe " << argv[0] << " test is passed well, OK\n";
4517   else
4518     di <<"\nThe " << argv[0] << " test failed, Faulty\n";
4519
4520   return 0;
4521 }
4522
4523 static Standard_Integer OCC12584 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4524 {
4525   Handle(AIS_InteractiveContext) aContext = ViewerTest::GetAISContext();
4526   if(aContext.IsNull()) { 
4527     di << argv[0] << " ERROR : use 'vinit' command before \n";
4528     return -1;
4529   }
4530
4531   if (argc > 2)
4532   {
4533     di << "Usage : " << argv[0] << " [mode = 0/1/2]\n";
4534     return 1;
4535   }
4536   Standard_Integer mode = 0;
4537   if (argc == 2)
4538   {
4539     mode = Draw::Atoi(argv[1]);
4540   }
4541   if (mode > 2 || mode < 0)
4542   {
4543     di << "Usage : " << argv[0] << " [mode = 0/1/2]\n";
4544     return 1;
4545   }
4546   Handle(V3d_View) V = ViewerTest::CurrentView();
4547   static Handle(AIS_ColorScale) aCS;
4548   if (aCS.IsNull())
4549   {
4550     aCS = new AIS_ColorScale();
4551   }
4552   if (aCS->ZLayer() != Graphic3d_ZLayerId_TopOSD)
4553   {
4554     aCS->SetZLayer (Graphic3d_ZLayerId_TopOSD);
4555   }
4556   if (aCS->TransformPersistence().IsNull()
4557    || aCS->TransformPersistence()->Mode() != Graphic3d_TMF_2d)
4558   {
4559     aContext->SetTransformPersistence (aCS, new Graphic3d_TransformPers (Graphic3d_TMF_2d, Aspect_TOTP_LEFT_LOWER));
4560   }
4561   Standard_Integer aWinWidth, aWinHeight;
4562   V->Window()->Size (aWinWidth, aWinHeight);
4563   aCS->SetSize (aWinWidth, aWinHeight);
4564   if ( !V.IsNull() ) {
4565     if (mode == 0) {
4566       aContext->Display (aCS, Standard_True);
4567     }
4568     if (mode == 1) {
4569       aContext->Erase (aCS, Standard_False);
4570       V->UpdateLights();
4571       V->Update();
4572     }
4573     if (mode == 2) {
4574       Standard_Boolean IsDisplayed = aContext->IsDisplayed (aCS);
4575       if (IsDisplayed)
4576         di <<"ColorScaleIsDisplayed = 1\n";
4577       else
4578         di <<"ColorScaleIsDisplayed = 0\n";
4579     }
4580   }
4581   return 0;
4582 }
4583
4584 #include <Interface_Macros.hxx>
4585 #include <IGESControl_Controller.hxx>
4586 #include <XSDRAW.hxx>
4587 #include <Draw_ProgressIndicator.hxx>
4588 #include <XSControl_WorkSession.hxx>
4589 #include <Transfer_TransientProcess.hxx>
4590 #include <TColStd_HSequenceOfTransient.hxx>
4591 #include <Message_ProgressSentry.hxx>
4592 #include <XSControl_TransferReader.hxx>
4593
4594 #include <Geom_Plane.hxx>
4595 static Standard_Integer OCC20766 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4596 {
4597   if (argc != 6)
4598   {
4599     di << "Usage : " << argv[0] << " plane a b c d\n";
4600     return 1;
4601   }
4602
4603   Standard_Real A = Draw::Atof(argv[2]);
4604   Standard_Real B = Draw::Atof(argv[3]);
4605   Standard_Real C = Draw::Atof(argv[4]);
4606   Standard_Real D = Draw::Atof(argv[5]);
4607
4608   Handle(Geom_Geometry) result;
4609
4610   Handle(Geom_Plane) aPlane = new Geom_Plane(A, B, C, D);
4611   result = aPlane;
4612
4613   DrawTrSurf::Set(argv[1],result);
4614   return 0;
4615 }
4616
4617 static Standard_Integer OCC20627 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4618 {
4619   if(argc!=2)
4620     {
4621       di << "Usage : " << argv[0] << " MaxNbr\n";
4622       return -1;
4623     }
4624   Standard_Integer aMaxNbr = Draw::Atoi(argv[1]);
4625
4626   for (Standard_Integer i=0;i<aMaxNbr;i++)
4627     {
4628       BRepBuilderAPI_MakePolygon w(gp_Pnt(0,0,0),gp_Pnt(0,100,0),gp_Pnt(20,100,0),gp_Pnt(20,0,0));
4629       w.Close();
4630       TopoDS_Wire wireShape( w.Wire());
4631       BRepBuilderAPI_MakeFace faceBuilder(wireShape);
4632       TopoDS_Face f( faceBuilder.Face());
4633       BRepMesh_IncrementalMesh im(f,1);
4634       BRepTools::Clean(f);
4635     }
4636   return 0;
4637 }
4638
4639 #include <Graphic3d_Vector.hxx>
4640 Standard_Integer OCC22762 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4641 {
4642     if (argc!=7)
4643         {
4644             di << "Wrong number of arguments\n";
4645             return -1;
4646         }
4647     Standard_Real X1_Pnt = Draw::Atof(argv[1]);
4648     Standard_Real Y1_Pnt = Draw::Atof(argv[2]);
4649     Standard_Real Z1_Pnt = Draw::Atof(argv[3]);
4650     Standard_Real X2_Pnt = Draw::Atof(argv[4]);
4651     Standard_Real Y2_Pnt = Draw::Atof(argv[5]);
4652     Standard_Real Z2_Pnt = Draw::Atof(argv[6]);
4653     
4654     Graphic3d_Vector AV1(X1_Pnt, Y1_Pnt, Z1_Pnt);
4655     Graphic3d_Vector AV2(X2_Pnt, Y2_Pnt, Z2_Pnt);
4656      
4657     di << "Result is: " << (Graphic3d_Vector::IsParallel(AV1, AV2) ? "true" : "false") << "\n" ;
4658     return 0;
4659 }
4660     
4661     
4662
4663
4664 #include <IntCurvesFace_ShapeIntersector.hxx>
4665 #include <gp_Lin.hxx>
4666 Standard_Integer OCC17424 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4667 {
4668   if(argc!=9)
4669     {
4670       di << "Usage : " << argv[0] << " shape X_Pnt Y_Pnt Z_Pnt X_Dir Y_Dir Z_Dir PInf\n";
4671       return -1;
4672     }
4673
4674   TopoDS_Shape shape = DBRep::Get(argv[1]);
4675
4676   if (shape.IsNull()) {
4677     di<<" Null shape is not allowed";
4678     return 1;
4679   }
4680
4681   Standard_Real X_Pnt = Draw::Atof(argv[2]);
4682   Standard_Real Y_Pnt = Draw::Atof(argv[3]);
4683   Standard_Real Z_Pnt = Draw::Atof(argv[4]);
4684
4685   Standard_Real X_Dir = Draw::Atof(argv[5]);
4686   Standard_Real Y_Dir = Draw::Atof(argv[6]);
4687   Standard_Real Z_Dir = Draw::Atof(argv[7]);
4688
4689   Standard_Real PInf  = Draw::Atof(argv[8]);
4690
4691   IntCurvesFace_ShapeIntersector intersector;
4692   intersector.Load(shape, Precision::Intersection());
4693
4694   gp_Pnt origin(X_Pnt, Y_Pnt, Z_Pnt);
4695   gp_Dir dir(X_Dir, Y_Dir, Z_Dir);
4696   gp_Lin ray(origin, dir);
4697
4698   Standard_Real PSup = RealLast();
4699   intersector.PerformNearest(ray, PInf, PSup);
4700   if (intersector.NbPnt() != 0)
4701     {
4702       di << argv[0] << " status = 0 \n";
4703       Standard_Real w = intersector.WParameter(1);
4704       di << "w = " << w << "\n";
4705     } else {
4706       di << argv[0] << " status = -1 \n";
4707     }
4708   return 0;
4709 }
4710
4711 Standard_Integer OCC22301 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4712 {
4713   if (argc != 1) {
4714     di << "Usage : " << argv[0] << "\n";
4715     return 1;
4716   }
4717
4718   // Create mask 1111: extent == 4
4719   TColStd_PackedMapOfInteger aFullMask;
4720   for (Standard_Integer i = 0; i < 4; i++)
4721     aFullMask.Add(i);
4722   
4723   // Create mask 1100: extent == 2
4724   TColStd_PackedMapOfInteger aPartMask;
4725   for (Standard_Integer i = 0; i < 2; i++)
4726     aPartMask.Add(i);
4727   
4728   di << "aFullMask = 1111\n";
4729   di << "aPartMask = 1100\n";
4730   
4731   Standard_Boolean isAffected;
4732   
4733   isAffected = aFullMask.Intersect(aPartMask); // true; extent == 2 (OK)
4734   di << "First time: aFullMask.Intersect(aPartMask), isAffected = " << (Standard_Integer)isAffected << "\n";
4735   isAffected = aFullMask.Intersect(aPartMask); // true; extent == 0 (?)
4736   di << "Second time: aFullMask.Intersect(aPartMask), isAffected = " << (Standard_Integer)isAffected << "\n";
4737   isAffected = aFullMask.Subtract(aPartMask); // false (?)
4738   di << "After two intersections: aFullMask.Subtract(aPartMask), isAffected = " << (Standard_Integer)isAffected << "\n";
4739
4740   return 0;
4741 }
4742 #include <ShapeFix_FixSmallFace.hxx>
4743 Standard_Integer OCC22586 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4744 {
4745         
4746   if (argc != 3) {
4747     di << "Usage : " << argv[0] << " shape resshape\n";
4748     return 1;
4749   }
4750   
4751   // try to read a shape:
4752   TopoDS_Shape aShape=DBRep::Get(argv[1]);
4753   ShapeFix_FixSmallFace aFixSmallFaces;
4754   aFixSmallFaces.Init (aShape);
4755   aFixSmallFaces.Perform();
4756   TopoDS_Shape aResShape = aFixSmallFaces.Shape();
4757   DBRep::Set(argv[2],aResShape);
4758   
4759   return 0;
4760
4761 }
4762
4763 #include <NCollection_DataMap.hxx>
4764 Standard_Integer OCC22744 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4765 {
4766         
4767   if (argc != 1) {
4768     di << "Usage : " << argv[0] << "\n";
4769     return 1;
4770   }
4771   
4772   TCollection_ExtendedString anExtString;
4773   
4774   Standard_ExtCharacter aNonAsciiChar = 0x0f00;
4775   anExtString.Insert(1, aNonAsciiChar);
4776
4777   di << "Is ASCII: " << ( anExtString.IsAscii() ? "true : Error" : "false : OK" ) << "\n";
4778   NCollection_DataMap<TCollection_ExtendedString, Standard_Integer> aMap;
4779   aMap.Bind(anExtString, 0);
4780   
4781   return 0;
4782
4783 }
4784
4785 Standard_Integer OCC22558 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4786 {
4787     if (argc != 10) {
4788         di << "Wrong number of arguments" << argv[0] << "\n";
4789         return 1;
4790     }
4791     
4792     Standard_Real X_vec = Draw::Atof(argv[1]);
4793     Standard_Real Y_vec = Draw::Atof(argv[2]);
4794     Standard_Real Z_vec = Draw::Atof(argv[3]);
4795     
4796     Standard_Real X_dir = Draw::Atof(argv[4]);
4797     Standard_Real Y_dir = Draw::Atof(argv[5]);
4798     Standard_Real Z_dir = Draw::Atof(argv[6]);
4799     
4800     Standard_Real X_pnt = Draw::Atof(argv[7]);
4801     Standard_Real Y_pnt = Draw::Atof(argv[8]);
4802     Standard_Real Z_pnt = Draw::Atof(argv[9]);
4803     
4804     gp_Dir toSym(X_vec, Y_vec, Z_vec);
4805     gp_Dir dir(X_dir, Y_dir, Z_dir);
4806     gp_Pnt loc(X_pnt, Y_pnt, Z_pnt);
4807     gp_Ax2 symObj(loc,dir);
4808     toSym.Mirror(symObj);
4809     
4810     di << "The result " << toSym.X() << " " << toSym.Y() << " " << toSym.Z() << "\n"; 
4811     return 0;
4812 }
4813     
4814
4815 Standard_Integer OCC22736 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4816 {
4817         
4818   if (argc != 9) {
4819     di << "Usage : " << argv[0] << " X_mirrorFirstPoint Y_mirrorFirstPoint X_mirrorSecondPoint Y_mirrorSecondPoint X_p1 Y_p1 X_p2 Y_p2\n";
4820     return 1;
4821   }
4822
4823   Standard_Real X_mirrorFirstPoint = Draw::Atof(argv[1]);
4824   Standard_Real Y_mirrorFirstPoint = Draw::Atof(argv[2]);
4825   Standard_Real X_mirrorSecondPoint = Draw::Atof(argv[3]);
4826   Standard_Real Y_mirrorSecondPoint = Draw::Atof(argv[4]);
4827   Standard_Real X_p1 = Draw::Atof(argv[5]);
4828   Standard_Real Y_p1 = Draw::Atof(argv[6]);
4829   Standard_Real X_p2 = Draw::Atof(argv[7]);
4830   Standard_Real Y_p2 = Draw::Atof(argv[8]);
4831   
4832   gp_Trsf2d identityTransformation;
4833
4834   gp_Pnt2d mirrorFirstPoint(X_mirrorFirstPoint,Y_mirrorFirstPoint);
4835   gp_Pnt2d mirrorSecondPoint(X_mirrorSecondPoint,Y_mirrorSecondPoint);
4836   gp_Ax2d  mirrorAxis(mirrorFirstPoint,gp_Vec2d(mirrorFirstPoint,mirrorSecondPoint));
4837
4838   gp_Pnt2d p1(X_p1,Y_p1);
4839   gp_Pnt2d p2(X_p2,Y_p2);
4840
4841   gp_Trsf2d M1;
4842   M1.SetMirror(mirrorAxis);
4843   gp_Trsf2d M2;
4844   M2.SetMirror(mirrorAxis);
4845   gp_Trsf2d Tcomp;
4846   Tcomp = M2.Multiplied(M1);
4847
4848   Standard_Real aTol = Precision::Confusion();
4849   Standard_Integer aStatus = 0;
4850
4851   //After applying two times the same mirror the point is located on the same location OK
4852   gp_Pnt2d p1MirrorM1   = p1.Transformed(M1);
4853   if ( Abs(p2.X() - p1MirrorM1.X()) > aTol )
4854     aStatus = 2;
4855   if ( Abs(p2.Y() - p1MirrorM1.Y()) > aTol )
4856     aStatus = 3;
4857
4858   gp_Pnt2d p1MirrorM1M2 = p1MirrorM1.Transformed(M2);
4859   if ( Abs(p1.X() - p1MirrorM1M2.X()) > aTol )
4860     aStatus = 4;
4861   if ( Abs(p1.Y() - p1MirrorM1M2.Y()) > aTol )
4862     aStatus = 5;
4863
4864   //If we apply the composed transformation of the same two mirrors to a point the result is //not located on the initial position.-->>ERROR
4865   gp_Pnt2d p1MirrorComp = p1.Transformed(Tcomp);
4866   if ( Abs(p1.X() - p1MirrorComp.X()) > aTol )
4867     aStatus = 6;
4868   if ( Abs(p1.Y() - p1MirrorComp.Y()) > aTol )
4869     aStatus = 7;
4870
4871   di << "Status = " << aStatus << "\n";
4872   return 0;
4873 }
4874
4875 Standard_Integer OCC23429(Draw_Interpretor& /*di*/,
4876                           Standard_Integer narg, const char** a)
4877 {
4878   if (narg < 4) return 1;
4879   
4880   TopoDS_Shape aShape = DBRep::Get(a[2]);
4881   if (aShape.IsNull()) return 1;
4882   
4883   BRepFeat_SplitShape Spls(aShape);
4884   Spls.SetCheckInterior(Standard_False);
4885
4886   TopoDS_Shape aTool = DBRep::Get(a[3]);
4887
4888   BRepAlgoAPI_Section Builder(aShape, aTool, Standard_False);
4889   Builder.ComputePCurveOn1(Standard_True);
4890   if (narg == 5)
4891     Builder.Approximation(Standard_True); 
4892   Builder.Build();
4893   TopoDS_Shape aSection = Builder.Shape();
4894
4895   TopExp_Explorer ExpSec(aSection, TopAbs_EDGE);
4896   for (; ExpSec.More(); ExpSec.Next())
4897   {
4898     TopoDS_Edge anEdge = TopoDS::Edge(ExpSec.Current());
4899     Handle(Geom2d_Curve) thePCurve;
4900     Handle(Geom_Surface) theSurface;
4901     TopLoc_Location theLoc;
4902     Standard_Real fpar, lpar;
4903     BRep_Tool::CurveOnSurface(anEdge, thePCurve, theSurface, theLoc, fpar, lpar);
4904     TopoDS_Face aFace;
4905     TopExp_Explorer ExpShape(aShape, TopAbs_FACE);
4906     for (; ExpShape.More(); ExpShape.Next())
4907     {
4908       aFace = TopoDS::Face(ExpShape.Current());
4909       TopLoc_Location aLoc;
4910       Handle(Geom_Surface) aSurface = BRep_Tool::Surface(aFace, aLoc);
4911       if (aSurface == theSurface && aLoc == theLoc)
4912         break;
4913     }
4914     Spls.Add(anEdge, aFace);
4915   }
4916
4917   TopoDS_Shape Result = Spls.Shape();
4918   DBRep::Set(a[1], Result);
4919
4920   return 0;
4921 }
4922
4923 #include <ExprIntrp_GenExp.hxx>
4924 Standard_Integer CR23403 (Draw_Interpretor& di, Standard_Integer argc, const char ** argv)
4925 {
4926         
4927   if (argc != 2) {
4928     di << "Usage : " << argv[0] << " string\n";
4929     return 1;
4930   }
4931
4932   Standard_CString aString = argv[1];
4933   Handle(ExprIntrp_GenExp) myExpr = ExprIntrp_GenExp::Create();
4934   try {
4935     OCC_CATCH_SIGNALS
4936     myExpr->Process( aString );
4937   }
4938   catch(Standard_Failure const& anException) {
4939     di << "Exception : " << anException.GetMessageString() << "\n";
4940   }
4941
4942   return 0;
4943 }
4944
4945 void QABugs::Commands_11(Draw_Interpretor& theCommands) {
4946   const char *group = "QABugs";
4947
4948   theCommands.Add("OCC128", "OCC128", __FILE__, OCC128, group);
4949
4950   // Remove as bad version of QAAddOrRemoveSelected from QADraw
4951   //theCommands.Add("OCC129", "OCC129 shape islocal", __FILE__, OCC129, group);
4952
4953   theCommands.Add("OCC136", "OCC136", __FILE__, OCC136, group);
4954   theCommands.Add("BUC60610","BUC60610 iges_input [name]",__FILE__,BUC60610,group);
4955
4956 //====================================================
4957 //
4958 // Following commands are inserted from 
4959 // /dn03/KAS/dev/QAopt/src/QADraw/QADraw_TOPOLOGY.cxx
4960 // ( 75455 Apr 16 18:59)
4961 //
4962 //====================================================
4963
4964   theCommands.Add("OCC105","OCC105 shape",__FILE__,OCC105,group); 
4965   theCommands.Add("OCC9"," result path cur1 cur2 radius [tolerance]:\t test GeomFill_Pipe", __FILE__, pipe_OCC9,group);
4966
4967   theCommands.Add("OCC125","OCC125 shell", __FILE__, OCC125,group);
4968
4969   theCommands.Add("OCC157","findplanarsurface Result wire Tol",__FILE__,OCC157,group);
4970   //theCommands.Add("OCC165","OCC165",__FILE__,OCC165,group);
4971   theCommands.Add("OCC165","OCC165 file",__FILE__,OCC165,group);
4972   theCommands.Add("OCC297","OCC297",__FILE__,OCC297,group);
4973   //theCommands.Add("OCC305","OCC305",__FILE__,OCC305,group);
4974   theCommands.Add("OCC305","OCC305 file",__FILE__,OCC305,group);
4975
4976   // New commands:
4977   theCommands.Add("OCC166", "OCC166", __FILE__, OCC166, group);
4978   theCommands.Add("OCC381_Save", "OCC381_Save Doc", __FILE__, OCC381_Save, group);
4979   theCommands.Add("OCC381_SaveAs", "OCC381_SaveAs Doc Path", __FILE__, OCC381_SaveAs, group);
4980
4981   theCommands.Add("OCC299","OCC299 Solid Point [Tolerance=1.e-7]", __FILE__, OCC299bug, group);
4982   theCommands.Add("OCC309","OCC309", __FILE__, OCC309bug, group);
4983   theCommands.Add("OCC310","OCC310", __FILE__, OCC310bug, group);
4984
4985   //theCommands.Add("OCC277","OCC277", __FILE__, OCC277bug, group);
4986   theCommands.Add("OCC277","OCC277 [BRepAlgoAPI/BRepAlgo = 1/0]", __FILE__, OCC277bug, group);
4987
4988   theCommands.Add("OCC333","OCC333 edge1 edge2 [toler domaindist]; Check overlapping edges", __FILE__, OCC333bug, group);
4989
4990   theCommands.Add("OCC363", "OCC363 document filename ", __FILE__, OCC363, group);
4991   // Must use OCC299
4992   //theCommands.Add("OCC372", "OCC372", __FILE__, OCC372, group);
4993   theCommands.Add("OCC377", "OCC377", __FILE__, OCC377, group);
4994   theCommands.Add("OCC22", "OCC22 Result Shape CompoundOfSubshapesToBeDivided ConsiderLocation", __FILE__, OCC22, group);
4995   theCommands.Add("OCC24", "OCC24 Result Shape CompoundOfSubshapes ResourceFileName", __FILE__, OCC24, group);
4996   theCommands.Add("OCC369", "OCC369 Shape", __FILE__, OCC369, group);
4997   theCommands.Add("OCC524", "OCC524 LowerVector UpperVector InitialValueVector LowerRowMatrix UpperRowMatrix LowerColMatrix UpperColMatrix InitialValueMatrix", __FILE__, OCC524, group);
4998   theCommands.Add("OCC525", "OCC525", __FILE__, OCC525, group);
4999   //theCommands.Add("OCC578", "OCC578 shape1 shape2 shape3", __FILE__, OCC578, group);
5000   theCommands.Add("OCC578", "OCC578 shape1 shape2 shape3 [BRepAlgoAPI/BRepAlgo = 1/0]", __FILE__, OCC578, group);
5001   theCommands.Add("OCC669", "OCC669 GUID", __FILE__, OCC669, group);
5002   theCommands.Add("OCC738_ShapeRef", "OCC738_ShapeRef", __FILE__, OCC738_ShapeRef, group);
5003   theCommands.Add("OCC738_Assembly", "OCC738_Assembly", __FILE__, OCC738_Assembly, group);
5004   theCommands.Add("OCC708", "OCC708 shape ; Deactivate the current transformation", __FILE__, OCC708, group);
5005   theCommands.Add("OCC670", "OCC670", __FILE__, OCC670, group);
5006   theCommands.Add("OCC867", "OCC867 Point Surface Umin Usup Vmin Vsup", __FILE__, OCC867, group);
5007   theCommands.Add("OCC909", "OCC909 wire face", __FILE__, OCC909, group);
5008   theCommands.Add("OCC921", "OCC921 face", __FILE__, OCC921, group);
5009   theCommands.Add("OCC902", "OCC902 expression", __FILE__, OCC902, group);
5010
5011   theCommands.Add ("OCC1029_AISTransparency","OCC1029_AISTransparency (DOC, entry, [real])",__FILE__, OCC1029_AISTransparency, group);
5012   theCommands.Add ("OCC1030_AISColor", "OCC1030_AISColor (DOC, entry, [color])", __FILE__, OCC1030_AISColor, group);
5013   theCommands.Add ("OCC1031_AISMaterial", "OCC1031_AISMaterial (DOC, entry, [material])", __FILE__, OCC1031_AISMaterial, group); 
5014   theCommands.Add ("OCC1032_AISWidth", "OCC1032_AISWidth (DOC, entry, [width])", __FILE__, OCC1032_AISWidth, group); 
5015   theCommands.Add ("OCC1033_AISMode", "OCC1033_AISMode (DOC, entry, [mode])", __FILE__, OCC1033_AISMode, group); 
5016   theCommands.Add ("OCC1034_AISSelectionMode", "OCC1034_AISSelectionMode (DOC, entry, [selectionmode])", __FILE__, OCC1034_AISSelectionMode, group); 
5017
5018   //theCommands.Add("OCC1487", "OCC1487 CylinderVariant(=1/2) cylinder1 cylinder2 cutshape", __FILE__, OCC1487, group);
5019   theCommands.Add("OCC1487", "OCC1487 CylinderVariant(=1/2) cylinder1 cylinder2 cutshape [BRepAlgoAPI/BRepAlgo = 1/0]", __FILE__, OCC1487, group);
5020
5021   theCommands.Add("OCC1077", "OCC1077 result", __FILE__, OCC1077, group);
5022   theCommands.Add("OCC5739", "OCC5739 name shape step", __FILE__, OCC5739_UniAbs, group);
5023   theCommands.Add("OCC6046", "OCC6046 nb_of_vectors size", __FILE__, OCC6046, group);
5024   theCommands.Add("OCC5698", "OCC5698 wire", __FILE__, OCC5698, group);
5025   theCommands.Add("OCC6143", "OCC6143", __FILE__, OCC6143, group);
5026   theCommands.Add("OCC7141", "OCC7141 [nCount] aPath", __FILE__, OCC7141, group);
5027   theCommands.Add("OCC7372", "OCC7372", __FILE__, OCC7372, group);
5028   theCommands.Add("OCC8169", "OCC8169 edge1 edge2 plane", __FILE__, OCC8169, group);
5029   theCommands.Add("OCC10138", "OCC10138 lower upper", __FILE__, OCC10138, group);
5030   theCommands.Add("OCC7639", "OCC7639 index1 value1 ... [indexN valueN]", __FILE__, OCC7639, group);
5031   theCommands.Add("OCC8797", "OCC8797", __FILE__, OCC8797, group);
5032   theCommands.Add("OCC7068", "OCC7068", __FILE__, OCC7068, group);
5033   theCommands.Add("OCC11457", "OCC11457 polygon lastedge x1 y1 z1 x2 y2 z2 ...", __FILE__, OCC11457, group);
5034   theCommands.Add("OCC13963", "OCC13963 ratio origin_x origin_y origin_z", __FILE__, OCC13963, group);
5035   theCommands.Add("OCC14376", "OCC14376 shape [deflection]", __FILE__, OCC14376, group);
5036   theCommands.Add("OCC15489", "OCC15489 A B C", __FILE__, OCC15489, group);
5037   theCommands.Add("OCC15755", "OCC15755 file shape", __FILE__, OCC15755, group);
5038   theCommands.Add("OCC16782", "OCC16782 file.std file.xml file.cbf", __FILE__, OCC16782, group);
5039   theCommands.Add("OCC12584", "OCC12584 [mode = 0/1/2]", __FILE__, OCC12584, group);
5040   theCommands.Add("OCC20766", "OCC20766 plane a b c d", __FILE__, OCC20766, group);
5041   theCommands.Add("OCC20627", "OCC20627", __FILE__, OCC20627, group);
5042   theCommands.Add("OCC17424", "OCC17424  shape X_Pnt Y_Pnt Z_Pnt X_Dir Y_Dir Z_Dir PInf", __FILE__, OCC17424, group);
5043   theCommands.Add("OCC22301", "OCC22301", __FILE__, OCC22301, group);
5044   theCommands.Add("OCC22586", "OCC22586 shape resshape", __FILE__, OCC22586, group);
5045   theCommands.Add("OCC22736", "OCC22736 X_mirrorFirstPoint Y_mirrorFirstPoint X_mirrorSecondPoint Y_mirrorSecondPoint X_p1 Y_p1 X_p2 Y_p2", __FILE__, OCC22736, group);
5046   theCommands.Add("OCC22744", "OCC22744", __FILE__, OCC22744, group);
5047   theCommands.Add("OCC22762", "OCC22762 x1 y1 z1 x2 y2 z3", __FILE__, OCC22762, group);
5048   theCommands.Add("OCC22558", "OCC22558 x_vec y_vec z_vec x_dir y_dir z_dit x_pnt y_pnt z_pnt", __FILE__, OCC22558, group);
5049   theCommands.Add("CR23403", "CR23403 string", __FILE__, CR23403, group);
5050   theCommands.Add("OCC23429", "OCC23429 res shape tool [appr]", __FILE__, OCC23429, group);
5051   return;
5052 }