Loading [MathJax]/extensions/tex2jax.js
MeshKernel
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages Concepts
meshkernel::HasConversionProjection Concept Reference

Ensure any instantiation of the MeshConversion Compute function is able to determine source and target projection types. More...

#include <MeshConversion.hpp>

Concept definition

template<typename Operation>
concept meshkernel::HasConversionProjection = requires(Operation op) {{ op.SourceProjection()} -> std::same_as<Projection>;
{ op.TargetProjection()} -> std::same_as<Projection>; }
Ensure any instantiation of the MeshConversion Compute function is able to determine source and targe...
Definition MeshConversion.hpp:47

Detailed Description

Ensure any instantiation of the MeshConversion Compute function is able to determine source and target projection types.