blob: afed2d0e03740ef3c6df5146eb062e33fba5f7fc (
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
|
// File: BooleanOperations_ShapeAndInterferences.cxx
// Created: Tue Jul 25 11:27:07 2000
// Author: Vincent DELOS
// <vds@bulox.paris1.matra-dtv.fr>
#include <BooleanOperations_ShapeAndInterferences.ixx>
//===========================================================================
//function : ShapeAndInterferences
//purpose :
//===========================================================================
BooleanOperations_ShapeAndInterferences::BooleanOperations_ShapeAndInterferences():
myState(BooleanOperations_UNKNOWN)
{
}
//modified by NIZNHY-PKV Wed Feb 2 12:55:46 2005f
/*
//===========================================================================
//function : SetInterference
//purpose :
//===========================================================================
void BooleanOperations_ShapeAndInterferences::SetInterference
(const BooleanOperations_InterferenceResult& Interf)
{
myInterferencesList.SetInterference(Interf);
}
//===========================================================================
//function : Dump
//purpose :
//===========================================================================
void BooleanOperations_ShapeAndInterferences::Dump() const
{
cout<<endl<<"myBoundingBox :"<<endl;
myBoundingBox.Dump();
myAncestorsAndSuccessors.Dump();
myInterferencesList.Dump();
cout<<endl<<"myState = "<<myState<<endl;
}
*/
//modified by NIZNHY-PKV Wed Feb 2 12:55:56 2005
|