0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / BVH / BVH_Set.lxx
1 // Created on: 2013-12-20
2 // Created by: Denis BOGOLEPOV
3 // Copyright (c) 2013-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 // function : BVH_Set
18 // purpose  :
19 // =======================================================================
20 template<class T, int N>
21 BVH_Set<T, N>::BVH_Set()
22 {
23   //
24 }
25
26 // =======================================================================
27 // function : ~BVH_Set
28 // purpose  :
29 // =======================================================================
30 template<class T, int N>
31 BVH_Set<T, N>::~BVH_Set()
32 {
33   //
34 }
35
36 // =======================================================================
37 // function : Box
38 // purpose  :
39 // =======================================================================
40 template<class T, int N>
41 BVH_Box<T, N> BVH_Set<T, N>::Box() const
42 {
43   BVH_Box<T, N> aBox;
44   const Standard_Integer aSize = Size();
45   for (Standard_Integer anIndex = 0; anIndex < aSize; ++anIndex)
46   {
47     aBox.Combine (Box (anIndex));
48   }
49   return aBox;
50 }