mirror of
https://github.com/love2d/love.git
synced 2026-08-16 08:11:02 +02:00
151 lines
3.7 KiB
C++
151 lines
3.7 KiB
C++
/**
|
|
* Copyright (c) 2006-2022 LOVE Development Team
|
|
*
|
|
* This software is provided 'as-is', without any express or implied
|
|
* warranty. In no event will the authors be held liable for any damages
|
|
* arising from the use of this software.
|
|
*
|
|
* Permission is granted to anyone to use this software for any purpose,
|
|
* including commercial applications, and to alter it and redistribute it
|
|
* freely, subject to the following restrictions:
|
|
*
|
|
* 1. The origin of this software must not be misrepresented; you must not
|
|
* claim that you wrote the original software. If you use this software
|
|
* in a product, an acknowledgment in the product documentation would be
|
|
* appreciated but is not required.
|
|
* 2. Altered source versions must be plainly marked as such, and must not be
|
|
* misrepresented as being the original software.
|
|
* 3. This notice may not be removed or altered from any source distribution.
|
|
**/
|
|
|
|
#ifndef LOVE_MATH_BEZIER_CURVE_H
|
|
#define LOVE_MATH_BEZIER_CURVE_H
|
|
|
|
// LOVE
|
|
#include "common/Object.h"
|
|
#include "common/Vector.h"
|
|
#include <vector>
|
|
|
|
namespace love
|
|
{
|
|
namespace math
|
|
{
|
|
|
|
class BezierCurve : public Object
|
|
{
|
|
public:
|
|
|
|
static love::Type type;
|
|
|
|
/**
|
|
* @param controlPoints Control polygon of the curve.
|
|
**/
|
|
BezierCurve(const std::vector<Vector2> &controlPoints);
|
|
|
|
/**
|
|
* @returns Degree of the curve
|
|
**/
|
|
size_t getDegree() const
|
|
{
|
|
return controlPoints.size() - 1;
|
|
}
|
|
|
|
/**
|
|
* @returns First derivative of the curve.
|
|
*/
|
|
BezierCurve getDerivative() const;
|
|
|
|
/**
|
|
* @returns i'th control point.
|
|
**/
|
|
const Vector2 &getControlPoint(int i) const;
|
|
|
|
/**
|
|
* Sets the i'th control point.
|
|
* @param i Control point to change.
|
|
* @param point New control point.
|
|
**/
|
|
void setControlPoint(int i, const Vector2 &point);
|
|
|
|
/**
|
|
* Insert a new control point before the i'th control point.
|
|
* If i < 0, Lua string indexing rules apply.
|
|
* @param point Control point to insert.
|
|
* @param pos Position to insert.
|
|
**/
|
|
void insertControlPoint(const Vector2 &point, int pos = -1);
|
|
|
|
/**
|
|
* Remove the i'th control point from the curve.
|
|
* @param i Control point to remove
|
|
**/
|
|
void removeControlPoint(int i);
|
|
|
|
/**
|
|
* @returns Number of control points.
|
|
**/
|
|
size_t getControlPointCount() const
|
|
{
|
|
return controlPoints.size();
|
|
}
|
|
|
|
/**
|
|
* Move the curve.
|
|
* @param t Translation vector.
|
|
*/
|
|
void translate(const Vector2 &t);
|
|
|
|
/**
|
|
* Rotate the curve.
|
|
* @param phi Rotation angle (radians).
|
|
* @param center Rotation center.
|
|
*/
|
|
void rotate(double phi, const Vector2 ¢er);
|
|
|
|
/**
|
|
* Scale the curve.
|
|
* @param phi Scale factor.
|
|
* @param center Scale center.
|
|
*/
|
|
void scale(double phi, const Vector2 ¢er);
|
|
|
|
/**
|
|
* Evaluates the curve at time t.
|
|
* @param t Curve parameter, must satisfy 0 <= t <= 1.
|
|
**/
|
|
Vector2 evaluate(double t) const;
|
|
|
|
/**
|
|
* Get curve segment starting at t1 and ending at t2.
|
|
* The new curve will be parametrized from 0 <= t <= 1.
|
|
* @param t1 Start of the segment.
|
|
* @param t2 End of the segment.
|
|
* @returns Bezier curve covering the segment.
|
|
*/
|
|
BezierCurve* getSegment(double t1, double t2) const;
|
|
|
|
/**
|
|
* Renders the curve by subdivision.
|
|
* @param accuracy The 'fineness' of the curve.
|
|
* @returns A polygon chain that approximates the bezier curve.
|
|
**/
|
|
std::vector<Vector2> render(int accuracy = 4) const;
|
|
|
|
/**
|
|
* Renders a segment of the curve by subdivision.
|
|
* @param start The starting point (between 0 and 1) on the curve.
|
|
* @param end The ending point on the curve.
|
|
* @param accuracy The 'fineness' of the curve.
|
|
* @returns A polygon chain that approximates the segment along the curve
|
|
**/
|
|
std::vector<Vector2> renderSegment(double start, double end, int accuracy = 4) const;
|
|
|
|
private:
|
|
std::vector<Vector2> controlPoints;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|