2009-06-25 20:45:27 +00:00
|
|
|
#ifndef BEZIER_CURVES_H
|
|
|
|
#define BEZIER_CURVES_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
2010-10-08 20:40:57 +00:00
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
|
|
|
|
|
2009-06-27 07:41:16 +00:00
|
|
|
/**
|
|
|
|
* Function Bezier2Poly
|
|
|
|
* convert a Bezier curve to a polyline
|
2010-12-14 15:56:30 +00:00
|
|
|
* @param c1 - First point to convert.
|
|
|
|
* @param c2 - Second point to convert.
|
|
|
|
* @param c3 - Third point to convert.
|
2009-06-27 07:41:16 +00:00
|
|
|
* @return a std::vector<wxPoint> containing the points of the polyline
|
|
|
|
*/
|
2009-06-25 20:45:27 +00:00
|
|
|
std::vector<wxPoint> Bezier2Poly(wxPoint c1, wxPoint c2, wxPoint c3);
|
2010-12-14 15:56:30 +00:00
|
|
|
|
2009-06-25 20:45:27 +00:00
|
|
|
std::vector<wxPoint> Bezier2Poly(int x1, int y1, int x2, int y2, int x3, int y3);
|
2009-06-27 07:41:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Function Bezier2Poly
|
|
|
|
* convert a Bezier curve to a polyline
|
|
|
|
* @return a std::vector<wxPoint> containing the points of the polyline
|
2010-12-14 15:56:30 +00:00
|
|
|
* @param c1 - First point to convert.
|
|
|
|
* @param c2 - Second point to convert.
|
|
|
|
* @param c3 - Third point to convert.
|
|
|
|
* @param c4 - Fourth point to convert.
|
2009-06-27 07:41:16 +00:00
|
|
|
* @return a std::vector<wxPoint> containing the points of the polyline
|
|
|
|
*/
|
2010-12-14 15:56:30 +00:00
|
|
|
std::vector<wxPoint> Bezier2Poly( wxPoint c1, wxPoint c2, wxPoint c3,wxPoint c4 );
|
|
|
|
|
2009-06-25 20:45:27 +00:00
|
|
|
std::vector<wxPoint> Bezier2Poly(int x1, int y1, int x2, int y2, int x3, int y3, int x4, int y4);
|
|
|
|
|
|
|
|
|
|
|
|
#endif // BEZIER_CURVES_H
|