blob: ae1e062e7b35432c9bdd31931302428e54ca1b04 (
plain)
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
|
// File: DrawDim_PlanarRadius.cxx
// Created: Fri Jan 12 17:59:57 1996
// Author: Denis PASCAL
// <dp@zerox>
#include <DrawDim_PlanarRadius.ixx>
#include <DrawDim.hxx>
#include <Geom_Curve.hxx>
#include <Geom_Circle.hxx>
#include <gp_Pnt.hxx>
#include <gp_Circ.hxx>
#include <BRep_Tool.hxx>
#include <TCollection_AsciiString.hxx>
#include <Draw_Color.hxx>
#include <ElCLib.hxx>
#include <TopExp.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Vertex.hxx>
//=======================================================================
//function : DrawDim_PlanarRadius
//purpose :
//=======================================================================
DrawDim_PlanarRadius::DrawDim_PlanarRadius(const TopoDS_Face& face, const TopoDS_Shape& c)
{
myPlane = face;
myCircle = c;
}
//=======================================================================
//function : DrawDim_PlanarRadius
//purpose :
//=======================================================================
DrawDim_PlanarRadius::DrawDim_PlanarRadius(const TopoDS_Shape& c)
{
myCircle = c;
}
//=======================================================================
//function : DrawOn
//purpose :
//=======================================================================
void DrawDim_PlanarRadius::DrawOn(Draw_Display& dis) const
{
if (myCircle.ShapeType() == TopAbs_EDGE) {
Standard_Real f,l;
Handle(Geom_Curve) curve = BRep_Tool::Curve (TopoDS::Edge(myCircle),f,l);
if (curve->IsKind(STANDARD_TYPE(Geom_Circle))) {
gp_Circ circle = Handle(Geom_Circle)::DownCast(curve)->Circ();
const gp_Pnt& first = circle.Location();
TopoDS_Vertex vf, vl;
TopExp::Vertices(TopoDS::Edge(myCircle),vf,vl);
const gp_Pnt last = BRep_Tool::Pnt(vf);
//
dis.Draw (first,last);
gp_Pnt p ((first.X()+ last.X())/2,(first.Y()+ last.Y())/2,(first.Z()+ last.Z())/2);
DrawText(p,dis);
return;
}
}
cout << " DrawDim_PlanarRadius::DrawOn : dimension error" << endl;
}
|