0024597: Missing internal vertex in the result of General Fuse Operation
[occt.git] / src / BOPDS / BOPDS_ShapeInfo.cxx
1 // Created by: Peter KURNEV
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and / or modify it
7 // under the terms of the GNU Lesser General Public version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15 #include <BOPDS_ShapeInfo.ixx>
16
17 #include <stdio.h>
18 #include <BOPCol_ListOfInteger.hxx>
19
20 static 
21   void DumpType(const TopAbs_ShapeEnum aTS);
22
23 //=======================================================================
24 //function : Dump
25 //purpose  : 
26 //=======================================================================
27   void BOPDS_ShapeInfo::Dump()const
28 {
29   Standard_Integer n;
30   TopAbs_ShapeEnum aTS;
31   BOPCol_ListIteratorOfListOfInteger aIt;
32   //
33   aTS=ShapeType();
34   DumpType(aTS);
35   //
36   printf(" {");
37   aIt.Initialize(mySubShapes);
38   for (; aIt.More(); aIt.Next()) {
39     n=aIt.Value();
40     printf(" %d", n);
41   }
42   printf(" }");
43 }
44 //=======================================================================
45 //function : DumpType
46 //purpose  : 
47 //=======================================================================
48 void DumpType(const TopAbs_ShapeEnum aTS)
49 {
50   const char *pT[]={
51     "COMPOUND",
52     "COMPSOLID",
53     "SOLID",
54     "SHELL",
55     "FACE",
56     "WIRE",
57     "EDGE",
58     "VERTEX",
59     "SHAPE"
60   };
61   printf(" %s", pT[(int)aTS]);
62 }