0022627: Change OCCT memory management defaults
[occt.git] / src / BRepBuilderAPI / BRepBuilderAPI.cxx
CommitLineData
7fd59977 1// File: BRepBuilderAPI.cxx
2// Created: Wed Oct 13 08:38:28 1999
3// Author: Atelier CAS2000
4// <cas@brunox.paris1.matra-dtv.fr>
5
6
7#include <BRepBuilderAPI.ixx>
8
9#include <BRepLib.hxx>
10#include <BRep_Builder.hxx>
11#include <BRep_Tool.hxx>
12#include <BRepTools.hxx>
13#include <Precision.hxx>
14#include <TopExp_Explorer.hxx>
15#include <TopTools_ListIteratorOfListOfShape.hxx>
16#include <TopTools_MapOfShape.hxx>
17#include <TopoDS.hxx>
18#include <TopoDS_Face.hxx>
19#include <TopoDS_Compound.hxx>
20#include <gp.hxx>
21
22
23//=======================================================================
24//function : Plane
25//purpose :
26//=======================================================================
27
28void BRepBuilderAPI::Plane(const Handle(Geom_Plane)& P)
29{
30 BRepLib::Plane(P);
31}
32
33
34//=======================================================================
35//function : Plane
36//purpose :
37//=======================================================================
38
39const Handle(Geom_Plane)& BRepBuilderAPI::Plane()
40{
41 return BRepLib::Plane();
42}
43
44
45//=======================================================================
46//function : Precision
47//purpose :
48//=======================================================================
49
50void BRepBuilderAPI::Precision(const Standard_Real P)
51{
52 BRepLib::Precision(P);
53}
54
55
56//=======================================================================
57//function : Precision
58//purpose :
59//=======================================================================
60
61Standard_Real BRepBuilderAPI::Precision()
62{
63 return BRepLib::Precision();
64}