Wildmeshing Toolkit
Loading...
Searching...
No Matches
TupleAccessor.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "Accessor.hpp"
4
5
6namespace wmtk::attribute {
7
8
9 // A wrapper around standard accessor treat the data as a vector of Tuple objects
10template <typename MeshType, int Dim = Eigen::Dynamic>
12{
13public:
14 TupleAccessor(MeshType& m, const TypedAttributeHandle<int64_t>& handle);
15 TupleAccessor(const MeshType& m, const TypedAttributeHandle<int64_t>& handle);
16 template <int Dim2>
17 TupleAccessor(const Accessor<int64_t, MeshType, CachingAttribute<int64_t>, Dim2>& accessor);
18
19 // Eigen::Map<VectorX<T>>
20 template <int D = Dim>
22 // Eigen::Map<const VectorX<T>>
23 template <int D = Dim>
25
26
27 const Tuple& const_scalar_attribute(const Tuple& t) const;
28 Tuple& scalar_attribute(const Tuple& t);
29
30 template <int D = Dim>
32 template <int D = Dim>
34
35 Eigen::Index dimension() const { return m_dimension; }
36
37private:
39 Eigen::Index m_dimension;
40};
41
42
43template <typename MeshType>
45template <typename MeshType>
46TupleAccessor(const MeshType& m, const TypedAttributeHandle<int64_t>& handle)
48
49} // namespace wmtk::attribute
50#include "TupleAccessor.hxx"
The Tuple is the basic navigation tool in our mesh data structure.
Definition Tuple.hpp:19
An Accessor that uses tuples for accessing attributes instead of indices.
Definition Accessor.hpp:28
const Tuple & const_scalar_attribute(const Tuple &t) const
Eigen::Index dimension() const
MapResult< Tuple, D > MapResult
ConstMapResult< Tuple, D > ConstMapResult
Tuple & scalar_attribute(const Tuple &t)
MapResult< D > vector_attribute(const Tuple &t)
Accessor< int64_t, MeshType > m_base_accessor
ConstMapResult< D > const_vector_attribute(const Tuple &t) const
Handle that represents attributes for some mesh.