|
|
|
|
@ -95,7 +95,6 @@ template<UnsignedInt order, UnsignedInt dimensions, class T> class Bezier {
|
|
|
|
|
* @see @ref operator[]() |
|
|
|
|
*/ |
|
|
|
|
Vector<dimensions, T>* points() { return _points; } |
|
|
|
|
|
|
|
|
|
constexpr const Vector<dimensions, T>* points() const { return _points; } /**< @overload */ |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@ -104,7 +103,6 @@ template<UnsignedInt order, UnsignedInt dimensions, class T> class Bezier {
|
|
|
|
|
* @see @ref points() |
|
|
|
|
*/ |
|
|
|
|
Vector<dimensions, T>& operator[](std::size_t pos) { return _points[pos]; } |
|
|
|
|
|
|
|
|
|
constexpr Vector<dimensions, T> operator[](std::size_t pos) const { return _points[pos]; } /**< @overload */ |
|
|
|
|
|
|
|
|
|
private: |
|
|
|
|
|