blob: fa972b3a8226744293240abc63d062894347907b (
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
|
// File: BRep_TVertex.cxx
// Created: Tue Aug 25 15:47:49 1992
// Author: Modelistation
// <model@phylox>
#include <BRep_TVertex.ixx>
#include <TopAbs.hxx>
//=======================================================================
//function : BRep_TVertex
//purpose :
//=======================================================================
BRep_TVertex::BRep_TVertex() :
TopoDS_TVertex(),
myTolerance(RealEpsilon())
{
}
//=======================================================================
//function : EmptyCopy
//purpose :
//=======================================================================
Handle(TopoDS_TShape) BRep_TVertex::EmptyCopy() const
{
Handle(BRep_TVertex) TV =
new BRep_TVertex();
TV->Pnt(myPnt);
TV->Tolerance(myTolerance);
return TV;
}
|