0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / Select3D / Select3D_SensitiveEntity.cxx
1 // Created on: 1995-03-13
2 // Created by: Robert COUBLANC
3 // Copyright (c) 1995-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #include <Select3D_SensitiveEntity.hxx>
18
19 #include <SelectMgr_EntityOwner.hxx>
20
21 IMPLEMENT_STANDARD_RTTIEXT(Select3D_SensitiveEntity, Standard_Transient)
22
23 //=======================================================================
24 //function : Select3D_SensitiveEntity
25 //purpose  :
26 //=======================================================================
27 Select3D_SensitiveEntity::Select3D_SensitiveEntity (const Handle(SelectMgr_EntityOwner)& theOwnerId)
28 : myOwnerId (theOwnerId),
29   mySFactor (2)
30 {
31   //
32 }
33
34 //=======================================================================
35 //function : DumpJson
36 //purpose  :
37 //=======================================================================
38 void Select3D_SensitiveEntity::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
39 {
40   OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
41
42   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, myOwnerId.get())
43   OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, mySFactor)
44
45   OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, NbSubElements());
46
47   gp_Pnt aCenterOfGeometry = CenterOfGeometry();
48   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &aCenterOfGeometry)
49
50   Standard_Boolean aHasInitLocation = HasInitLocation();
51   OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, aHasInitLocation)
52
53   gp_GTrsf anInvInitLocation = InvInitLocation();
54   OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &anInvInitLocation)
55 }