Correction of OCCT for ACIS22398
[occt.git] / src / GeometryTest / GeometryTest.cxx
CommitLineData
7fd59977 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
13void 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 // define the TCL variable Draw_GEOMETRY
28 //char* com = "set Draw_GEOMETRY 1";
29 //theCommands.Eval(com);
30 //char* com2 = "source $env(CASROOT)/src/DrawResources/CURVES.tcl";
31 //theCommands.Eval(com2);
32 //char* com3 = "source $env(CASROOT)/src/DrawResources/SURFACES.tcl";
33 //theCommands.Eval(com3);
34}