blob: 9edff9b50fe63086b5cc2858dc09804988351d1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// File: StepToTopoDS_Root.cxx
// Created: Thu Apr 8 17:45:20 1999
// Author: data exchange team
// <det@doomox.nnov.matra-dtv.fr>
// gka 13.04.99 S4136: add myPrecision and myMaxTol fields
#include <StepToTopoDS_Root.ixx>
#include <Precision.hxx>
//=======================================================================
//function : StepToTopoDS_Root
//purpose :
//=======================================================================
StepToTopoDS_Root::StepToTopoDS_Root () : done(Standard_False)
{
myPrecision = myMaxTol = Precision::Confusion();
}
|