0029915: Porting to VC 2017 : Regressions in Modeling Algorithms on VC 2017
[occt.git] / src / BVH / BVH_Object.hxx
CommitLineData
3c4e78f2 1// Created on: 2013-12-20
2// Created by: Denis BOGOLEPOV
d5f74e42 3// Copyright (c) 2013-2014 OPEN CASCADE SAS
3c4e78f2 4//
5// This file is part of Open CASCADE Technology software library.
6//
d5f74e42 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
3c4e78f2 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#ifndef _BVH_Object_Header
17#define _BVH_Object_Header
18
19#include <BVH_Box.hxx>
20#include <BVH_Properties.hxx>
21
f5b72419 22//! A non-template class for using as base for BVH_Object
23//! (just to have a named base class).
24class BVH_ObjectTransient : public Standard_Transient
25{
26 DEFINE_STANDARD_RTTIEXT(BVH_ObjectTransient, Standard_Transient)
27public:
28
29 //! Returns properties of the geometric object.
30 virtual const Handle(BVH_Properties)& Properties() const { return myProperties; }
31
32 //! Sets properties of the geometric object.
33 virtual void SetProperties (const Handle(BVH_Properties)& theProperties) { myProperties = theProperties; }
34
a228288f 35 //! Returns TRUE if object state should be updated.
36 virtual Standard_Boolean IsDirty() const { return myIsDirty; }
37
f5b72419 38 //! Marks object state as outdated (needs BVH rebuilding).
39 virtual void MarkDirty() { myIsDirty = Standard_True; }
40
41protected:
42
43 //! Creates new abstract geometric object.
44 BVH_ObjectTransient() : myIsDirty (Standard_False) {}
45
46protected:
47
48 Standard_Boolean myIsDirty; //!< Marks internal object state as outdated
49 Handle(BVH_Properties) myProperties; //!< Generic properties assigned to the object
50
51};
3c4e78f2 52
679d3878 53//! Abstract geometric object bounded by BVH box.
54//! \tparam T Numeric data type
55//! \tparam N Vector dimension
3c4e78f2 56template<class T, int N>
f5b72419 57class BVH_Object : public BVH_ObjectTransient
3c4e78f2 58{
59public:
60
61 //! Creates new abstract geometric object.
f5b72419 62 BVH_Object() {}
3c4e78f2 63
64 //! Releases resources of geometric object.
65 virtual ~BVH_Object() = 0;
66
67public:
68
679d3878 69 //! Returns AABB of the geometric object.
3c4e78f2 70 virtual BVH_Box<T, N> Box() const = 0;
71
3c4e78f2 72};
73
e28f12b3 74// =======================================================================
75// function : ~BVH_Object
76// purpose :
77// =======================================================================
78template<class T, int N>
79BVH_Object<T, N>::~BVH_Object()
80{
81 //
82}
3c4e78f2 83
84#endif // _BVH_Object_Header