0024428: Implementation of LGPL license
[occt.git] / src / BRepTest / BRepTest.cxx
1 // Created on: 1994-07-25
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1994-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and / or modify it
9 // under the terms of the GNU Lesser General Public version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <BRepTest.ixx>
18 #include <DBRep.hxx>
19
20
21
22 //=======================================================================
23 //function : AllCommands
24 //purpose  : 
25 //=======================================================================
26
27 void  BRepTest::AllCommands(Draw_Interpretor& theCommands)
28 {
29   static Standard_Boolean done = Standard_False;
30   if (done) return;
31   done = Standard_True;
32
33   DBRep::BasicCommands(theCommands);
34   BRepTest::BasicCommands(theCommands);
35   BRepTest::CurveCommands(theCommands);
36   BRepTest::Fillet2DCommands(theCommands);
37   BRepTest::SurfaceCommands(theCommands);
38   BRepTest::FillingCommands(theCommands) ;
39   BRepTest::PrimitiveCommands(theCommands);
40   BRepTest::SweepCommands(theCommands);
41   BRepTest::TopologyCommands(theCommands);
42   BRepTest::FilletCommands(theCommands);
43   BRepTest::ChamferCommands(theCommands);
44   BRepTest::GPropCommands(theCommands);
45   BRepTest::MatCommands(theCommands);
46   BRepTest::DraftAngleCommands(theCommands);
47   BRepTest::FeatureCommands(theCommands);
48   BRepTest::OtherCommands(theCommands);
49   BRepTest::ExtremaCommands(theCommands);
50   BRepTest::CheckCommands(theCommands);
51 //  BRepTest::PlacementCommands(theCommands) ;
52   BRepTest::ProjectionCommands(theCommands) ;
53
54   // define the TCL variable Draw_TOPOLOGY
55   const char* com = "set Draw_TOPOLOGY 1";
56   theCommands.Eval(com);
57 }
58
59