0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / DrawDim / DrawDim_Dimension.cxx
CommitLineData
b311480e 1// Created on: 1997-04-21
2// Created by: Denis PASCAL
3// Copyright (c) 1997-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 8// This library is free software; you can redistribute it and/or modify it under
9// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
42cf5bc1 17
18#include <Draw_Color.hxx>
19#include <Draw_Display.hxx>
7fd59977 20#include <Draw_Interpretor.hxx>
42cf5bc1 21#include <DrawDim_Dimension.hxx>
22#include <gp_Pnt.hxx>
23#include <Standard_DomainError.hxx>
24#include <Standard_Type.hxx>
7fd59977 25#include <TCollection_AsciiString.hxx>
26
92efcf78 27IMPLEMENT_STANDARD_RTTIEXT(DrawDim_Dimension,Draw_Drawable3D)
28
7fd59977 29//=======================================================================
30//function : DrawDim_Dimension
31//purpose :
32//=======================================================================
7fd59977 33DrawDim_Dimension::DrawDim_Dimension()
34 : is_valued(Standard_False),
d533dafb 35 myValue(0.0),
7fd59977 36 myTextColor(Draw_blanc)
37{
38}
39
40//=======================================================================
41//function : SetValue
42//purpose :
43//=======================================================================
44
45void DrawDim_Dimension::SetValue (const Standard_Real avalue)
46{
47 is_valued = Standard_True;
48 myValue = avalue;
49}
50
51//=======================================================================
52//function : GetValue
53//purpose :
54//=======================================================================
55
56Standard_Real DrawDim_Dimension::GetValue() const
57{
9775fa61 58 if (!is_valued) throw Standard_DomainError();
7fd59977 59 return myValue;
60}
61
62//=======================================================================
63//function : IsValued
64//purpose :
65//=======================================================================
66
67Standard_Boolean DrawDim_Dimension::IsValued() const
68{
69 return is_valued;
70}
71
72//=======================================================================
73//function : TextColor
74//purpose :
75//=======================================================================
76
77Draw_Color DrawDim_Dimension::TextColor() const
78{
79 return myTextColor;
80}
81
82//=======================================================================
83//function : TextColor
84//purpose :
85//=======================================================================
86
87void DrawDim_Dimension::TextColor(const Draw_Color& C)
88{
89 myTextColor = C;
90}
91
92//=======================================================================
93//function : DrawText
94//purpose :
95//=======================================================================
96
97void DrawDim_Dimension::DrawText(const gp_Pnt& P, Draw_Display& D) const
98{
99 TCollection_AsciiString t = Name();
100 if (is_valued) {
101 t+="=";
102 Standard_Integer l = t.Length();
103 t+= myValue;
104 for (Standard_Integer i = l; i <= t.Length(); i++) {
105 if (t.Value(i) == '.') { t.Trunc(i+2); break; }
106 }
107 }
108
109 D.SetColor(myTextColor);
110 D.DrawString(P,t.ToCString());
111}