X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Funion.h;h=a1562cb4e6b458b55003d981b5898c0c7ded2f25;hb=2087c3bb9e6087ccce86360c1c57823aa8a9ff40;hp=8461f8484ee5d085560b6fb70f522447d9a95c6e;hpb=09cc3a8648dd20e9a07d669b353c4a120b67c1c4;p=libs%2Fmath.git diff --git a/source/geometry/union.h b/source/geometry/union.h index 8461f84..a1562cb 100644 --- a/source/geometry/union.h +++ b/source/geometry/union.h @@ -6,9 +6,6 @@ namespace Msp { namespace Geometry { -/** -Joins component shapes together into one. -*/ template struct UnionOps { @@ -20,6 +17,9 @@ struct UnionOps static bool combine_surface(bool a, bool b) { return a && !b; } }; +/** +Joins component shapes together into one. +*/ template class Union: public CompositeShape > {