PhysicsBasedAnimationToolkit 0.0.10
Cross-platform C++20 library of algorithms and data structures commonly used in computer graphics research on physically-based simulation.
Loading...
Searching...
No Matches
pbat::common::CContiguousArithmeticMatrixRange Concept Reference

Range of Eigen fixed-size matrix types. More...

#include <Concepts.h>

Concept definition

template<class R>
{
requires std::ranges::range<R>;
requires std::ranges::sized_range<R>;
requires std::ranges::contiguous_range<R>;
{std::ranges::range_value_t<R>::RowsAtCompileTime}->std::convertible_to<int>;
{std::ranges::range_value_t<R>::ColsAtCompileTime}->std::convertible_to<int>;
requires std::is_arithmetic_v<typename std::ranges::range_value_t<R>::Scalar>;
{std::ranges::range_value_t<R>::Flags};
}
Range of Eigen fixed-size matrix types.
Definition Concepts.h:100

Detailed Description

Range of Eigen fixed-size matrix types.

Template Parameters
R