File indexing completed on 2025-01-18 10:05:16
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
0036 Standard_EXPORT StepVisual_SurfaceStyleRendering();
0037
0038
0039 Standard_EXPORT void Init(const StepVisual_ShadingSurfaceMethod theRenderingMethod,
0040 const Handle(StepVisual_Colour)& theSurfaceColour);
0041
0042
0043 Standard_EXPORT StepVisual_ShadingSurfaceMethod RenderingMethod() const;
0044
0045 Standard_EXPORT void SetRenderingMethod (const StepVisual_ShadingSurfaceMethod theRenderingMethod);
0046
0047
0048 Standard_EXPORT Handle(StepVisual_Colour) SurfaceColour() const;
0049
0050 Standard_EXPORT void SetSurfaceColour (const Handle(StepVisual_Colour)& theSurfaceColour);
0051
0052 DEFINE_STANDARD_RTTIEXT(StepVisual_SurfaceStyleRendering, Standard_Transient)
0053
0054 private:
0055 StepVisual_ShadingSurfaceMethod myRenderingMethod;
0056 Handle(StepVisual_Colour) mySurfaceColour;
0057
0058 };
0059 #endif