0031668: Visualization - WebGL sample doesn't work on Emscripten 1.39
[occt.git] / src / STEPCAFControl / STEPCAFControl_ActorWrite.cxx
1 // Created on: 2000-10-05
2 // Created by: Andrey BETENEV
3 // Copyright (c) 2000-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
7 // This library is free software; you can redistribute it and/or modify it under
8 // the terms of the GNU Lesser General Public License version 2.1 as published
9 // by the Free Software Foundation, with special exception defined in the file
10 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11 // distribution for complete text of the license and disclaimer of any warranty.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16
17 #include <Standard_Type.hxx>
18 #include <STEPCAFControl_ActorWrite.hxx>
19 #include <TopoDS_Shape.hxx>
20
21 IMPLEMENT_STANDARD_RTTIEXT(STEPCAFControl_ActorWrite,STEPControl_ActorWrite)
22
23 //=======================================================================
24 //function : STEPCAFControl_ActorWrite
25 //purpose  : 
26 //=======================================================================
27 STEPCAFControl_ActorWrite::STEPCAFControl_ActorWrite () : myStdMode(Standard_True)
28 {
29 }
30
31 //=======================================================================
32 //function : ClearMap
33 //purpose  : 
34 //=======================================================================
35
36 void STEPCAFControl_ActorWrite::SetStdMode (const Standard_Boolean stdmode)
37 {
38   myStdMode = stdmode;
39   if ( myStdMode ) ClearMap();
40 }
41
42 //=======================================================================
43 //function : ClearMap
44 //purpose  : 
45 //=======================================================================
46
47 void STEPCAFControl_ActorWrite::ClearMap ()
48 {
49   myMap.Clear();
50 }
51
52 //=======================================================================
53 //function : RegisterAssembly
54 //purpose  : 
55 //=======================================================================
56
57 void STEPCAFControl_ActorWrite::RegisterAssembly (const TopoDS_Shape &S)
58 {
59   if ( ! myStdMode && S.ShapeType() == TopAbs_COMPOUND ) myMap.Add ( S );
60 }
61
62 //=======================================================================
63 //function : IsAssembly
64 //purpose  : 
65 //=======================================================================
66
67 Standard_Boolean STEPCAFControl_ActorWrite::IsAssembly (TopoDS_Shape &S) const
68 {
69   if ( myStdMode ) return STEPControl_ActorWrite::IsAssembly ( S );
70   return myMap.Contains ( S );
71 }
72