1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
// This file is generated by WOK (CPPExt).
// Please do not edit this file; modify original file instead.
// The copyright and license terms as defined for the original file apply to
// this header file considered to be the "object code" form of the original source.
#ifndef _HLRTest_HeaderFile
#define _HLRTest_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Macro.hxx>
#include <Standard_CString.hxx>
#include <Standard_Boolean.hxx>
#include <Handle_HLRTopoBRep_OutLiner.hxx>
#include <Draw_Interpretor.hxx>
class HLRAlgo_Projector;
class TopoDS_Shape;
class HLRTopoBRep_OutLiner;
class HLRTest_ShapeData;
class HLRTest_DrawableEdgeTool;
class HLRTest_DrawablePolyEdgeTool;
class HLRTest_Projector;
class HLRTest_OutLiner;
//! This package is a test of the Hidden Lines
//! algorithms instantiated on the BRep Data Structure
//! and using the Draw package to display the results.
class HLRTest
{
public:
DEFINE_STANDARD_ALLOC
//! Draw Variable Outliner to test
//! Set a Projector Variable
Standard_EXPORT static void Set (const Standard_CString Name, const HLRAlgo_Projector& P) ;
//! Get a projector variable
//! Returns false if the variable is not a projector
Standard_EXPORT static Standard_Boolean GetProjector (Standard_CString& Name, HLRAlgo_Projector& P) ;
//! Set a OutLiner Variable
Standard_EXPORT static void Set (const Standard_CString Name, const TopoDS_Shape& S) ;
//! Get a outliner variable
//! Returns a null handle if the variable is not a outliner
Standard_EXPORT static Handle(HLRTopoBRep_OutLiner) GetOutLiner (Standard_CString& Name) ;
//! Defines commands to test the Hidden Line Removal
Standard_EXPORT static void Commands (Draw_Interpretor& I) ;
protected:
private:
friend class HLRTest_ShapeData;
friend class HLRTest_DrawableEdgeTool;
friend class HLRTest_DrawablePolyEdgeTool;
friend class HLRTest_Projector;
friend class HLRTest_OutLiner;
};
#endif // _HLRTest_HeaderFile
|