1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
// File: GeometryTest.cxx
// Created: Mon Jul 25 19:06:50 1994
// Author: Remi LEQUETTE
// <rle@bravox>
// modified by jct (15.04.97) ajout de ModificationCommands
#include <GeomliteTest.hxx>
#include <Standard_Boolean.hxx>
#include <Draw_Interpretor.hxx>
void GeomliteTest::AllCommands(Draw_Interpretor& theCommands)
{
static Standard_Boolean done = Standard_False;
if (done) return;
done = Standard_True;
GeomliteTest::CurveCommands(theCommands);
GeomliteTest::SurfaceCommands(theCommands);
GeomliteTest::ApproxCommands(theCommands);
GeomliteTest::API2dCommands(theCommands);
GeomliteTest::ModificationCommands(theCommands);
// define the TCL variable Draw_GEOMETRY
//char* com = "set Draw_GEOMETRY 1";
//theCommands.Eval(com);
}