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