Warning, file /include/opencascade/StepVisual_SurfaceStyleRendering.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepVisual_SurfaceStyleRendering_HeaderFile_
0018 #define _StepVisual_SurfaceStyleRendering_HeaderFile_
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022 #include <Standard_Transient.hxx>
0023
0024 #include <StepVisual_ShadingSurfaceMethod.hxx>
0025 #include <StepVisual_Colour.hxx>
0026
0027 class StepVisual_SurfaceStyleRendering;
0028 DEFINE_STANDARD_HANDLE(StepVisual_SurfaceStyleRendering, Standard_Transient)
0029
0030
0031 class StepVisual_SurfaceStyleRendering : public Standard_Transient
0032 {
0033 public:
0034
0035 Standard_EXPORT StepVisual_SurfaceStyleRendering();
0036
0037
0038 Standard_EXPORT void Init(const StepVisual_ShadingSurfaceMethod theRenderingMethod,
0039 const Handle(StepVisual_Colour)& theSurfaceColour);
0040
0041
0042 Standard_EXPORT StepVisual_ShadingSurfaceMethod RenderingMethod() const;
0043
0044 Standard_EXPORT void SetRenderingMethod(const StepVisual_ShadingSurfaceMethod theRenderingMethod);
0045
0046
0047 Standard_EXPORT Handle(StepVisual_Colour) SurfaceColour() const;
0048
0049 Standard_EXPORT void SetSurfaceColour(const Handle(StepVisual_Colour)& theSurfaceColour);
0050
0051 DEFINE_STANDARD_RTTIEXT(StepVisual_SurfaceStyleRendering, Standard_Transient)
0052
0053 private:
0054 StepVisual_ShadingSurfaceMethod myRenderingMethod;
0055 Handle(StepVisual_Colour) mySurfaceColour;
0056 };
0057 #endif