0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / Select3D / Select3D_SensitiveEntity.cxx
CommitLineData
b311480e 1// Created on: 1995-03-13
2// Created by: Robert COUBLANC
3// Copyright (c) 1995-1999 Matra Datavision
973c2be1 4// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5//
973c2be1 6// This file is part of Open CASCADE Technology software library.
b311480e 7//
d5f74e42 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
973c2be1 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.
b311480e 13//
973c2be1 14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
7fd59977 16
f751596e 17#include <Select3D_SensitiveEntity.hxx>
0609d8ee 18
0ef04197 19#include <SelectMgr_EntityOwner.hxx>
7fd59977 20
0ef04197 21IMPLEMENT_STANDARD_RTTIEXT(Select3D_SensitiveEntity, Standard_Transient)
92efcf78 22
7fd59977 23//=======================================================================
f751596e 24//function : Select3D_SensitiveEntity
3bf9a45f 25//purpose :
7fd59977 26//=======================================================================
0ef04197 27Select3D_SensitiveEntity::Select3D_SensitiveEntity (const Handle(SelectMgr_EntityOwner)& theOwnerId)
28: myOwnerId (theOwnerId),
29 mySFactor (2)
3bf9a45f 30{
0ef04197 31 //
3bf9a45f 32}
bc73b006 33
34//=======================================================================
35//function : DumpJson
36//purpose :
37//=======================================================================
38void Select3D_SensitiveEntity::DumpJson (Standard_OStream& theOStream, Standard_Integer theDepth) const
39{
40 OCCT_DUMP_TRANSIENT_CLASS_BEGIN (theOStream)
41
983aaaeb 42 OCCT_DUMP_FIELD_VALUE_POINTER (theOStream, myOwnerId.get())
4e993e4d 43 OCCT_DUMP_FIELD_VALUES_DUMPED(theOStream, theDepth, myTrsfPers.get())
44 OCCT_DUMP_FIELD_VALUE_NUMERICAL(theOStream, mySFactor)
bc73b006 45
46 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, NbSubElements());
47
48 gp_Pnt aCenterOfGeometry = CenterOfGeometry();
49 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &aCenterOfGeometry)
50
51 Standard_Boolean aHasInitLocation = HasInitLocation();
52 OCCT_DUMP_FIELD_VALUE_NUMERICAL (theOStream, aHasInitLocation)
53
54 gp_GTrsf anInvInitLocation = InvInitLocation();
55 OCCT_DUMP_FIELD_VALUES_DUMPED (theOStream, theDepth, &anInvInitLocation)
56}