X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fgeometry%2Fintersection.h;fp=source%2Fgeometry%2Fintersection.h;h=7d21f75f81c081e87aeb783710a56aab7fe6207e;hb=2087c3bb9e6087ccce86360c1c57823aa8a9ff40;hp=01707cdfc64274a79317179fc3faa96348c3c591;hpb=5bcf5a18cda4d712ca177f4ad43fea690f31e6f9;p=libs%2Fmath.git diff --git a/source/geometry/intersection.h b/source/geometry/intersection.h index 01707cd..7d21f75 100644 --- a/source/geometry/intersection.h +++ b/source/geometry/intersection.h @@ -6,9 +6,6 @@ namespace Msp { namespace Geometry { -/** -Forms a shape from the common parts of component shapes. -*/ template struct IntersectionOps { @@ -20,6 +17,9 @@ struct IntersectionOps static bool combine_surface(bool a, bool b) { return a && b; } }; +/** +Forms a shape from the common parts of component shapes. +*/ template class Intersection: public CompositeShape > {