Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions include/world_builder/objects/bezier_curve.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,20 @@ namespace WorldBuilder
{

/**
* @brief Class for circle line/spline, including interpolation on it
* @brief A Class representing bezier curves.
*
*/
class BezierCurve
{
public:
/**
* @brief Construct a new Bezier Curve object
* @brief Construct a new Bezier Curve object.
*
* @param p
* @param angle_constrains
*/
BezierCurve() {};

/**
* @brief Construct a new Bezier Curve object
* @brief Construct a new Bezier Curve object from a list of points and a list of angle constrains.
*
* @param p
* @param angle_constrains
Expand All @@ -66,7 +64,7 @@ namespace WorldBuilder
ClosestPointOnCurve closest_point_on_curve_segment(const Point<2> &p, const bool verbose = false) const;

/**
* @brief
* @brief Compute a point on the curve at a given parameter value and section.
*
* @param i
* @param x
Expand Down
Loading