blob: 3f1a56a19614fae71e2cce74cbf17deb5ad47cc1 (
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
|
// File: TopOpeBRepBuild_SolidAreaBuilder.cxx
// Created: Thu Dec 21 17:07:40 1995
// Author: Jean Yves LEBEY
// <jyl@meteox>
//Copyright: Matra Datavision 1995
#include <TopOpeBRepBuild_SolidAreaBuilder.ixx>
//=======================================================================
//function : TopOpeBRepBuild_SolidAreaBuilder
//purpose :
//=======================================================================
TopOpeBRepBuild_SolidAreaBuilder::TopOpeBRepBuild_SolidAreaBuilder()
{
}
//=======================================================================
//function : TopOpeBRepBuild_SolidAreaBuilder
//purpose :
//=======================================================================
TopOpeBRepBuild_SolidAreaBuilder::TopOpeBRepBuild_SolidAreaBuilder
(TopOpeBRepBuild_LoopSet& LS, TopOpeBRepBuild_LoopClassifier& LC,
const Standard_Boolean ForceClass)
{
InitSolidAreaBuilder(LS,LC,ForceClass);
}
//=======================================================================
//function : TopOpeBRepBuild_SolidAreaBuilder
//purpose :
//=======================================================================
void TopOpeBRepBuild_SolidAreaBuilder::InitSolidAreaBuilder
(TopOpeBRepBuild_LoopSet& LS, TopOpeBRepBuild_LoopClassifier& LC,
const Standard_Boolean ForceClass)
{
InitAreaBuilder(LS,LC,ForceClass);
}
|