]> git.tdb.fi Git - libs/math.git/blob - source/geometry/circle.h
ebc1c41b2501347852c94653f83c666dd5711772
[libs/math.git] / source / geometry / circle.h
1 #ifndef MSP_GEOMETRY_CIRCLE_H_
2 #define MSP_GEOMETRY_CIRCLE_H_
3
4 #include "hypersphere.h"
5
6 namespace Msp {
7 namespace Geometry {
8
9 template<typename T>
10 class Circle: public HyperSphere<T, 2>
11 {
12 public:
13         Circle() { }
14         explicit Circle(T r): HyperSphere<T, 2>(r) { }
15 };
16
17 } // namespace Geometry
18 } // namespace Msp
19
20 #endif