Wildmeshing Toolkit
Loading...
Searching...
No Matches
Attribute.hxx
Go to the documentation of this file.
1#pragma once
2#include "Attribute.hpp"
3#if defined(WMTK_ENABLED_DEV_MODE)
4#define WMTK_ATTRIBUTE_INLINE
5#else
6#define WMTK_ATTRIBUTE_INLINE inline
7#endif
8namespace wmtk::attribute {
9
10//=======================================================
11// Scalar Attribute Access from arbitrary data
12//=======================================================
13template <typename T>
15 int64_t index,
16 const std::vector<T>& data) const
17{
18 assert(index < reserved_size(data));
19 assert(m_dimension == 1);
20 return data[index];
21}
22
23template <typename T>
24WMTK_ATTRIBUTE_INLINE T& Attribute<T>::scalar_attribute(int64_t index, std::vector<T>& data) const
25{
26 assert(index < reserved_size(data));
27 assert(m_dimension == 1);
28 return data[index];
29}
30
31//=======================================================
32// Vector Attribute Access from arbitrary data without offset
33//=======================================================
34template <typename T>
35template <int D>
37 int64_t start,
38 const std::vector<T>& data) const -> ConstMapResult<D>
39{
40 assert(m_dimension > 0);
41 assert(D == Eigen::Dynamic || D == m_dimension);
42 int64_t dim = D == Eigen::Dynamic ? m_dimension : D;
43 ConstMapResult<D> R(data.data() + start, dim);
44
45 assert(R.size() == m_dimension);
46
47 return R;
48}
49template <typename T>
50template <int D>
52 int64_t start,
53 std::vector<T>& data) const -> MapResult<D>
54{
55 assert(m_dimension > 0);
56 assert(D == Eigen::Dynamic || D == m_dimension);
57 int64_t dim = D == Eigen::Dynamic ? m_dimension : D;
58 MapResult<D> R(data.data() + start, dim);
59 assert(R.size() == m_dimension);
60 return R;
61}
62
63//=======================================================
64// Vector Attribute Access from arbitrary data
65//=======================================================
66template <typename T>
67template <int D>
69 int64_t index,
70 const std::vector<T>& data) const -> ConstMapResult<D>
71{
72 int64_t dim = D == Eigen::Dynamic ? m_dimension : D;
73 assert(D == Eigen::Dynamic || D == m_dimension);
74 assert(index < reserved_size(data));
75 assert(data.size() % m_dimension == 0);
76 const int64_t start = index * dim;
77 return const_vector_attribute_without_stride<D>(start, data);
78}
79template <typename T>
80template <int D>
81WMTK_ATTRIBUTE_INLINE auto Attribute<T>::vector_attribute(int64_t index, std::vector<T>& data) const
83{
84 assert(index < reserved_size(data));
85 assert(data.size() % m_dimension == 0);
86 assert(D == Eigen::Dynamic || D == m_dimension);
87 int64_t dim = D == Eigen::Dynamic ? m_dimension : D;
88 const int64_t start = index * dim;
89 return vector_attribute_without_stride<D>(start, data);
90}
91
92
93//=======================================================
94// Vector Attribute Access of single element from arbitrary data
95//=======================================================
96template <typename T>
97template <int D>
99 int64_t index,
100 int8_t vector_index,
101 const std::vector<T>& data) const
102{
103 assert(D == Eigen::Dynamic || D == m_dimension);
104 int64_t dim = D == Eigen::Dynamic ? m_dimension : D;
105 const int64_t idx = index * dim + vector_index;
106 assert(index < reserved_size(data));
107 return data[idx];
108}
109template <typename T>
110template <int D>
112Attribute<T>::vector_single_value(int64_t index, int8_t vector_index, std::vector<T>& data) const
113{
114 assert(D == Eigen::Dynamic || D == m_dimension);
115 int64_t dim = D == Eigen::Dynamic ? m_dimension : D;
116 const int64_t idx = index * dim + vector_index;
117 assert(index < reserved_size(data));
118 return data[idx];
119}
120
121//=======================================================
122// Standard Scalar access
123//=======================================================
124
125template <typename T>
127{
128 return const_scalar_attribute(index, m_data);
129}
130template <typename T>
132{
133 return scalar_attribute(index, m_data);
134}
135
136
137//=======================================================
138// Standard vector access
139//=======================================================
140template <typename T>
141template <int D>
144{
145 return const_vector_attribute<D>(index, m_data);
146}
147
148
149template <typename T>
150template <int D>
152{
153 return vector_attribute<D>(index, m_data);
154}
155
156
157//=======================================================
158// Standard vector single value access
159//=======================================================
160template <typename T>
161template <int D>
163 int64_t index,
164 int8_t vector_index) const
165{
166 return const_vector_single_value<D>(index, vector_index, m_data);
167}
168
169template <typename T>
170template <int D>
171WMTK_ATTRIBUTE_INLINE T& Attribute<T>::vector_single_value(int64_t index, int8_t vector_index)
172{
173 return vector_single_value<D>(index, vector_index, m_data);
174}
175
176
177//=======================================================
178// Simple getters
179//=======================================================
180template <typename T>
182{
183 return m_dimension;
184}
185
186template <typename T>
188{
189 return m_default_value;
190}
191
192
193} // namespace wmtk::attribute
194#undef WMTK_ATTRIBUTE_INLINE
#define WMTK_ATTRIBUTE_INLINE
Definition Attribute.hxx:6
T & vector_single_value(int64_t index, int8_t vector_index)
Access to a single a single value of a scalr attribute.
ConstMapResult< D > const_vector_attribute(int64_t index) const
Access the value of an attribute at a particular index. If the dimension of the attribute is known at...
const T & const_scalar_attribute(int64_t index) const
Access the value of a scalar attribute.
MapResult< T, D > MapResult
Definition Attribute.hpp:27
ConstMapResult< D > const_vector_attribute_without_stride(int64_t index, const std::vector< T > &data) const
Accesses the attribute using the specified vector as the underlying data This is internally used by t...
ConstMapResult< T, D > ConstMapResult
Definition Attribute.hpp:29
MapResult< D > vector_attribute_without_stride(int64_t index, std::vector< T > &data) const
Accesses the attribute using the specified vector as the underlying data This is internally used by t...
int64_t dimension() const
The number of values for each index.
const T & const_vector_single_value(int64_t index, int8_t vector_index) const
Access a single entry in a vector attribute. TODO: this might not actually be more performant than.
T & scalar_attribute(int64_t index)
Access the value of a scalar attribute. Assignment to the returned value will change the value.
MapResult< D > vector_attribute(int64_t index)
Access the value of an attribute at a particular index. If the dimension of the attribute is known at...
const T & default_value() const
returns the default value of this attribute