/usr/include/oce/Prs3d_DatumAspect.hxx is in liboce-visualization-dev 0.9.1-3.
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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | // 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 _Prs3d_DatumAspect_HeaderFile
#define _Prs3d_DatumAspect_HeaderFile
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_DefineHandle_HeaderFile
#include <Standard_DefineHandle.hxx>
#endif
#ifndef _Handle_Prs3d_DatumAspect_HeaderFile
#include <Handle_Prs3d_DatumAspect.hxx>
#endif
#ifndef _Handle_Prs3d_LineAspect_HeaderFile
#include <Handle_Prs3d_LineAspect.hxx>
#endif
#ifndef _Standard_Boolean_HeaderFile
#include <Standard_Boolean.hxx>
#endif
#ifndef _Quantity_Length_HeaderFile
#include <Quantity_Length.hxx>
#endif
#ifndef _Prs3d_CompositeAspect_HeaderFile
#include <Prs3d_CompositeAspect.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
#ifndef _Standard_OStream_HeaderFile
#include <Standard_OStream.hxx>
#endif
class Prs3d_LineAspect;
//! A framework to define the display of datums. <br>
class Prs3d_DatumAspect : public Prs3d_CompositeAspect {
public:
//! An empty framework to define the display of datums. <br>
Standard_EXPORT Prs3d_DatumAspect();
//! Returns the attributes for display of the first axis. <br>
Standard_EXPORT Handle_Prs3d_LineAspect FirstAxisAspect() const;
//! Returns the attributes for display of the second axis. <br>
Standard_EXPORT Handle_Prs3d_LineAspect SecondAxisAspect() const;
//! Returns the attributes for display of the third axis. <br>
Standard_EXPORT Handle_Prs3d_LineAspect ThirdAxisAspect() const;
//! Sets the DrawFirstAndSecondAxis attributes to active. <br>
Standard_EXPORT void SetDrawFirstAndSecondAxis(const Standard_Boolean draw) ;
//! Returns true if the first and second axes can be drawn. <br>
Standard_EXPORT Standard_Boolean DrawFirstAndSecondAxis() const;
//! Sets the DrawThirdAxis attributes to active. <br>
Standard_EXPORT void SetDrawThirdAxis(const Standard_Boolean draw) ;
//! Returns true if the third axis can be drawn. <br>
Standard_EXPORT Standard_Boolean DrawThirdAxis() const;
//! Sets the lengths L1, L2 and L3 of the three axes. <br>
Standard_EXPORT void SetAxisLength(const Standard_Real L1,const Standard_Real L2,const Standard_Real L3) ;
//! Returns the length of the displayed first axis. <br>
Standard_EXPORT Quantity_Length FirstAxisLength() const;
//! Returns the length of the displayed second axis. <br>
Standard_EXPORT Quantity_Length SecondAxisLength() const;
//! Returns the length of the displayed third axis. <br>
Standard_EXPORT Quantity_Length ThirdAxisLength() const;
Standard_EXPORT void Print(Standard_OStream& s) const;
DEFINE_STANDARD_RTTI(Prs3d_DatumAspect)
protected:
private:
Handle_Prs3d_LineAspect myFirstAxisAspect;
Handle_Prs3d_LineAspect mySecondAxisAspect;
Handle_Prs3d_LineAspect myThirdAxisAspect;
Standard_Boolean myDrawFirstAndSecondAxis;
Standard_Boolean myDrawThirdAxis;
Quantity_Length myFirstAxisLength;
Quantity_Length mySecondAxisLength;
Quantity_Length myThirdAxisLength;
};
// other Inline functions and methods (like "C++: function call" methods)
#endif
|