448803af38b7d9448d37d3dd2c63c566209c97f7
[occt.git] / src / GeometryTest / GeometryTest.cxx
1 // File:        GeometryTest.cxx
2 // Created:     Mon Jul 25 19:06:50 1994
3 // Author:      Remi LEQUETTE
4 //              <rle@bravox>
5 // modified by mps (dec 96) ajout de ContinuityCommands
6 //             jpi 09/06/97 utilisation des commandes de GeomliteTest
7
8 #include <GeometryTest.hxx>
9 #include <GeomliteTest.hxx>
10 #include <Standard_Boolean.hxx>
11 #include <Draw_Interpretor.hxx>
12
13 void GeometryTest::AllCommands(Draw_Interpretor& theCommands)
14 {
15   static Standard_Boolean done = Standard_False;
16   if (done) return;
17   done = Standard_True;
18
19   GeomliteTest::AllCommands(theCommands);
20   GeometryTest::CurveCommands(theCommands);
21   GeometryTest::FairCurveCommands(theCommands);
22   GeometryTest::SurfaceCommands(theCommands);
23   GeometryTest::ConstraintCommands(theCommands);
24 //  GeometryTest::API2dCommands(theCommands);
25   GeometryTest::APICommands(theCommands);
26   GeometryTest::ContinuityCommands(theCommands);
27   GeometryTest::TestProjCommands(theCommands);
28   // define the TCL variable Draw_GEOMETRY
29   //char* com = "set Draw_GEOMETRY 1";
30   //theCommands.Eval(com);
31   //char* com2 = "source $env(CASROOT)/src/DrawResources/CURVES.tcl";
32   //theCommands.Eval(com2);
33   //char* com3 = "source $env(CASROOT)/src/DrawResources/SURFACES.tcl";
34   //theCommands.Eval(com3);
35 }