Ponca  6f9f1b59d7c8c4654a710cfcef7342f4f5c79ba1
Point Cloud Analysis library
Loading...
Searching...
No Matches
Ponca::IsNeighborhoodFrame Concept Reference

Concept definition

template<typename T>
concept Ponca::IsNeighborhoodFrame = requires(T t, const T ct, typename T::VectorType v) {
t.changeNeighborhoodFrame(v);
{ ct.convertToGlobalBasis(v, true) } -> std::convertible_to<typename T::VectorType>;
{ ct.convertToLocalBasis(v, true) } -> std::convertible_to<typename T::VectorType>;
{ t.center() } -> std::convertible_to<typename T::VectorType>;
{ ct.center() } -> std::convertible_to<typename T::VectorType>;
}
Aggregator class used to declare specialized structures using CRTP.
Definition basket.h:260

Detailed Description

Definition at line 11 of file concepts.h.