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