blob: 3b3998a8ce6899e51b7cb5cbb8c0f1c8c8e33b04 (
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
|
// File: BRepBuilderAPI.cxx
// Created: Wed Oct 13 08:38:28 1999
// Author: Atelier CAS2000
// <cas@brunox.paris1.matra-dtv.fr>
#include <BRepBuilderAPI.ixx>
#include <BRepLib.hxx>
#include <BRep_Builder.hxx>
#include <BRep_Tool.hxx>
#include <BRepTools.hxx>
#include <Precision.hxx>
#include <TopExp_Explorer.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
#include <TopTools_MapOfShape.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Face.hxx>
#include <TopoDS_Compound.hxx>
#include <gp.hxx>
//=======================================================================
//function : Plane
//purpose :
//=======================================================================
void BRepBuilderAPI::Plane(const Handle(Geom_Plane)& P)
{
BRepLib::Plane(P);
}
//=======================================================================
//function : Plane
//purpose :
//=======================================================================
const Handle(Geom_Plane)& BRepBuilderAPI::Plane()
{
return BRepLib::Plane();
}
//=======================================================================
//function : Precision
//purpose :
//=======================================================================
void BRepBuilderAPI::Precision(const Standard_Real P)
{
BRepLib::Precision(P);
}
//=======================================================================
//function : Precision
//purpose :
//=======================================================================
Standard_Real BRepBuilderAPI::Precision()
{
return BRepLib::Precision();
}
|