X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgeometry%2Fcircle.h;fp=source%2Fgeometry%2Fcircle.h;h=ebc1c41b2501347852c94653f83c666dd5711772;hb=6ff13022b53830d35283905d562c2ef3af198cc1;hp=0000000000000000000000000000000000000000;hpb=ec9e0699ef686a3314d4c9ee0f39b29a92d3aeed;p=libs%2Fmath.git diff --git a/source/geometry/circle.h b/source/geometry/circle.h new file mode 100644 index 0000000..ebc1c41 --- /dev/null +++ b/source/geometry/circle.h @@ -0,0 +1,20 @@ +#ifndef MSP_GEOMETRY_CIRCLE_H_ +#define MSP_GEOMETRY_CIRCLE_H_ + +#include "hypersphere.h" + +namespace Msp { +namespace Geometry { + +template +class Circle: public HyperSphere +{ +public: + Circle() { } + explicit Circle(T r): HyperSphere(r) { } +}; + +} // namespace Geometry +} // namespace Msp + +#endif