/usr/include/oce/DBRep_Face.hxx is in liboce-visualization-dev 0.18.2-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // 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 _DBRep_Face_HeaderFile
#define _DBRep_Face_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_DBRep_Face.hxx>
#include <TopoDS_Face.hxx>
#include <Draw_Color.hxx>
#include <TColStd_Array1OfInteger.hxx>
#include <TColStd_Array1OfReal.hxx>
#include <MMgt_TShared.hxx>
#include <Standard_Integer.hxx>
#include <GeomAbs_IsoType.hxx>
#include <Standard_Real.hxx>
class TopoDS_Face;
class Draw_Color;
//! Display of a face. Face + Array of iso + color.
class DBRep_Face : public MMgt_TShared
{
public:
//! N is the number of iso intervals.
Standard_EXPORT DBRep_Face(const TopoDS_Face& F, const Standard_Integer N, const Draw_Color& C);
const TopoDS_Face& Face() const;
void Face (const TopoDS_Face& F) ;
Standard_Integer NbIsos() const;
void Iso (const Standard_Integer I, const GeomAbs_IsoType T, const Standard_Real Par, const Standard_Real T1, const Standard_Real T2) ;
void GetIso (const Standard_Integer I, GeomAbs_IsoType& T, Standard_Real& Par, Standard_Real& T1, Standard_Real& T2) const;
const Draw_Color& Color() const;
void Color (const Draw_Color& C) ;
DEFINE_STANDARD_RTTI(DBRep_Face)
protected:
private:
TopoDS_Face myFace;
Draw_Color myColor;
TColStd_Array1OfInteger myTypes;
TColStd_Array1OfReal myParams;
};
#include <DBRep_Face.lxx>
#endif // _DBRep_Face_HeaderFile
|