You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Conception/drake-master/multibody/fem/fem_indexes.h

19 lines
403 B

#pragma once
#include "drake/common/identifier.h"
#include "drake/common/type_safe_index.h"
namespace drake {
namespace multibody {
namespace fem {
/** Type used to index FEM nodes. */
using FemNodeIndex = TypeSafeIndex<class FemNodeTag>;
/** Type used to identify FEM models. */
using FemModelId = Identifier<class FemModelTag>;
} // namespace fem
} // namespace multibody
} // namespace drake