0024739: TKOpenGl - port ray-tracing from OpenCL to GLSL for better integration and...
[occt.git] / src / BVH / BVH_Sorter.hxx
1 // Created on: 2014-01-10
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 #ifndef _BVH_Sorter_Header
17 #define _BVH_Sorter_Header
18
19 #include <BVH_Set.hxx>
20
21 //! Performs centroid-based sorting of abstract set.
22 template<class T, int N>
23 class BVH_Sorter
24 {
25 public:
26
27   //! Sorts the set by centroids coordinates in specified axis.
28   static void Perform (BVH_Set<T, N>*         theSet,
29                        const Standard_Integer theAxis);
30
31   //! Sorts the set by centroids coordinates in specified axis.
32   static void Perform (BVH_Set<T, N>*         theSet,
33                        const Standard_Integer theAxis,
34                        const Standard_Integer theBegElement,
35                        const Standard_Integer theEndElement);
36
37 };
38
39 #include <BVH_Sorter.lxx>
40
41 #endif // _BVH_Sorter_Header