/usr/include/oce/Prs3d_DatumAspect.hxx is in liboce-visualization-dev 0.17.2-2.
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 | // 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
#include <Standard.hxx>
#include <Standard_DefineHandle.hxx>
#include <Handle_Prs3d_DatumAspect.hxx>
#include <Handle_Prs3d_LineAspect.hxx>
#include <Standard_Boolean.hxx>
#include <Quantity_Length.hxx>
#include <Prs3d_BasicAspect.hxx>
#include <Standard_Real.hxx>
class Prs3d_LineAspect;
//! A framework to define the display of datums.
class Prs3d_DatumAspect : public Prs3d_BasicAspect
{
public:
//! An empty framework to define the display of datums.
Standard_EXPORT Prs3d_DatumAspect();
//! Returns the attributes for display of the first axis.
Standard_EXPORT Handle(Prs3d_LineAspect) FirstAxisAspect() const;
//! Returns the attributes for display of the second axis.
Standard_EXPORT Handle(Prs3d_LineAspect) SecondAxisAspect() const;
//! Returns the attributes for display of the third axis.
Standard_EXPORT Handle(Prs3d_LineAspect) ThirdAxisAspect() const;
//! Sets the DrawFirstAndSecondAxis attributes to active.
Standard_EXPORT void SetDrawFirstAndSecondAxis (const Standard_Boolean draw) ;
//! Returns true if the first and second axes can be drawn.
Standard_EXPORT Standard_Boolean DrawFirstAndSecondAxis() const;
//! Sets the DrawThirdAxis attributes to active.
Standard_EXPORT void SetDrawThirdAxis (const Standard_Boolean draw) ;
//! Returns true if the third axis can be drawn.
Standard_EXPORT Standard_Boolean DrawThirdAxis() const;
//! Sets the lengths L1, L2 and L3 of the three axes.
Standard_EXPORT void SetAxisLength (const Standard_Real L1, const Standard_Real L2, const Standard_Real L3) ;
//! Returns the length of the displayed first axis.
Standard_EXPORT Quantity_Length FirstAxisLength() const;
//! Returns the length of the displayed second axis.
Standard_EXPORT Quantity_Length SecondAxisLength() const;
//! Returns the length of the displayed third axis.
Standard_EXPORT Quantity_Length ThirdAxisLength() 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;
};
#endif // _Prs3d_DatumAspect_HeaderFile
|