FEAT 3
Finite Element Analysis Toolbox
Loading...
Searching...
No Matches
base.hpp
1// FEAT3: Finite Element Analysis Toolbox, Version 3
2// Copyright (C) 2010 by Stefan Turek & the FEAT group
3// FEAT3 is released under the GNU General Public License version 3,
4// see the file 'copyright.txt' in the top level directory for details.
5
6#pragma once
7
8// includes, FEAT
10
11namespace FEAT
12{
18 namespace Adjacency
19 {
25 enum class RenderType
26 {
34 as_is = 0,
35
41 as_is_sorted = 1,
42
50 injectify = 2,
51
58
67 transpose = 4,
68
75
85
92 }; // enum class RenderType
93 } // namespace Adjacency
94} // namespace FEAT
FEAT Kernel base header.
RenderType
Render type enumeration.
Definition: base.hpp:26
@ injectify_sorted
Render-Injectified mode, sort image indices.
@ transpose
Render-Transpose mode.
@ injectify_transpose
Render-Injectified-Transpose mode.
@ injectify_transpose_sorted
Render-Injectified-Transpose mode, sort image indices.
@ injectify
Render-Injectified mode.
@ transpose_sorted
Render-Transpose mode, sort image indices.
@ as_is
Render-As-Is mode.
@ as_is_sorted
Render-As-Is mode, sort image indices.
FEAT namespace.
Definition: adjactor.hpp:12