// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2020 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 4.0.2019.08.13 #pragma once #include namespace WwiseGTE { // Find-intersection queries. template class FIQuery { public: struct Result { // A FIQuery-base class B must define a B::Result struct with // member 'bool intersect'. A FIQuery-derived class D must also // derive a D::Result from B:Result but may have no members. The // member 'intersect' is 'true' iff the primitives intersect. The // operator() is const for conceptual constness, but derived // classes can use internal data to support the queries and tag // that data with the mutable modifier. }; Result operator()(Type0 const& primitive0, Type1 const& primitive1) const; }; }