File indexing completed on 2026-09-19 09:29:35
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 #ifndef _StepVisual_CurveStyleFontPattern_HeaderFile
0018 #define _StepVisual_CurveStyleFontPattern_HeaderFile
0019
0020 #include <Standard.hxx>
0021 #include <Standard_Type.hxx>
0022
0023 #include <Standard_Transient.hxx>
0024
0025 class StepVisual_CurveStyleFontPattern : public Standard_Transient
0026 {
0027
0028 public:
0029
0030 Standard_EXPORT StepVisual_CurveStyleFontPattern();
0031
0032 Standard_EXPORT void Init(const double aVisibleSegmentLength,
0033 const double aInvisibleSegmentLength);
0034
0035 Standard_EXPORT void SetVisibleSegmentLength(const double aVisibleSegmentLength);
0036
0037 Standard_EXPORT double VisibleSegmentLength() const;
0038
0039 Standard_EXPORT void SetInvisibleSegmentLength(const double aInvisibleSegmentLength);
0040
0041 Standard_EXPORT double InvisibleSegmentLength() const;
0042
0043 DEFINE_STANDARD_RTTIEXT(StepVisual_CurveStyleFontPattern, Standard_Transient)
0044
0045 private:
0046 double visibleSegmentLength;
0047 double invisibleSegmentLength;
0048 };
0049
0050 #endif