Integration of OCCT 6.5.0 from SVN
[occt.git] / src / BRepTest / BRepTest.cxx
1 // File:        BRepTest.cxx
2 // Created:     Mon Jul 25 14:05:42 1994
3 // Author:      Remi LEQUETTE
4 //              <rle@bravox>
5
6
7 #include <BRepTest.ixx>
8 #include <DBRep.hxx>
9
10
11
12 //=======================================================================
13 //function : AllCommands
14 //purpose  : 
15 //=======================================================================
16
17 void  BRepTest::AllCommands(Draw_Interpretor& theCommands)
18 {
19   static Standard_Boolean done = Standard_False;
20   if (done) return;
21   done = Standard_True;
22
23   DBRep::BasicCommands(theCommands);
24   BRepTest::BasicCommands(theCommands);
25   BRepTest::CurveCommands(theCommands);
26   BRepTest::Fillet2DCommands(theCommands);
27   BRepTest::SurfaceCommands(theCommands);
28   BRepTest::FillingCommands(theCommands) ;
29   BRepTest::PrimitiveCommands(theCommands);
30   BRepTest::SweepCommands(theCommands);
31   BRepTest::TopologyCommands(theCommands);
32   BRepTest::FilletCommands(theCommands);
33   BRepTest::ChamferCommands(theCommands);
34   BRepTest::GPropCommands(theCommands);
35   BRepTest::MatCommands(theCommands);
36   BRepTest::DraftAngleCommands(theCommands);
37   BRepTest::FeatureCommands(theCommands);
38   BRepTest::OtherCommands(theCommands);
39   BRepTest::ExtremaCommands(theCommands);
40   BRepTest::CheckCommands(theCommands);
41 //  BRepTest::PlacementCommands(theCommands) ;
42   BRepTest::ProjectionCommands(theCommands) ;
43   BRepTest::ShellCommands(theCommands);
44
45   // define the TCL variable Draw_TOPOLOGY
46   const char* com = "set Draw_TOPOLOGY 1";
47   theCommands.Eval(com);
48 }
49
50