blob: 30e2fce24856e75d9ab4cd2cd30bbec1e4ca4a31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// File: BRepAlgo_Common.cxx
// Created: Fri Oct 15 11:36:28 1993
// Author: Remi LEQUETTE
// <rle@phylox>
#include <BRepAlgo_Common.ixx>
//=======================================================================
//function : BRepAlgo_Common
//purpose :
//=======================================================================
BRepAlgo_Common::BRepAlgo_Common(const TopoDS_Shape& S1,
const TopoDS_Shape& S2)
: BRepAlgo_BooleanOperation(S1,S2)
{
InitParameters();
PerformDS();
Perform(TopAbs_IN,TopAbs_IN);
}
|