0031642: Visualization - crash in Graphic3d_Structure::SetVisual() on redisplaying...
[occt.git] / src / GeometryTest / GeometryTest.hxx
... / ...
CommitLineData
1// Created on: 1991-06-24
2// Created by: Christophe MARION
3// Copyright (c) 1991-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 under
9// the terms of the GNU Lesser General Public License 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#ifndef _GeometryTest_HeaderFile
18#define _GeometryTest_HeaderFile
19
20#include <Standard.hxx>
21#include <Standard_DefineAlloc.hxx>
22#include <Standard_Handle.hxx>
23
24#include <Draw_Interpretor.hxx>
25
26
27//! this package provides commands for curves and
28//! surface.
29class GeometryTest
30{
31public:
32
33 DEFINE_STANDARD_ALLOC
34
35
36 //! defines all geometric commands.
37 Standard_EXPORT static void AllCommands (Draw_Interpretor& I);
38
39 //! defines curve commands.
40 Standard_EXPORT static void CurveCommands (Draw_Interpretor& I);
41
42 //! defines tangent curve commands.
43 Standard_EXPORT static void CurveTanCommands (Draw_Interpretor& I);
44
45 //! defines fair curve commands.
46 Standard_EXPORT static void FairCurveCommands (Draw_Interpretor& I);
47
48 //! defines surface commands.
49 Standard_EXPORT static void SurfaceCommands (Draw_Interpretor& I);
50
51 //! defines cosntrained curves commands.
52 Standard_EXPORT static void ConstraintCommands (Draw_Interpretor& I);
53
54 //! defines commands to test the GeomAPI
55 //! - Intersection
56 //! - Extrema
57 //! - Projection
58 //! - Approximation, interpolation
59 Standard_EXPORT static void APICommands (Draw_Interpretor& I);
60
61 //! defines commands to check local
62 //! continuity between curves or surfaces
63 Standard_EXPORT static void ContinuityCommands (Draw_Interpretor& I);
64
65 //! defines command to test the polyhedral
66 //! triangulations and the polygons from the Poly package.
67 Standard_EXPORT static void PolyCommands (Draw_Interpretor& I);
68
69 //! defines commands to test projection of geometric objects
70 Standard_EXPORT static void TestProjCommands (Draw_Interpretor& I);
71
72};
73
74#endif // _GeometryTest_HeaderFile