基于 EasyX图形库的傻瓜式二阶贝塞尔曲线

#include
#include
#include // 引用图形库头文件

#include
#include

using namespace std;
#define delayTime 10 //0.01秒刷新一次

unsigned long long befTime=0;

struct POS
{
float x;
float y;
};

vector PointBezier;

void initSupLine(POS begin, POS end, POS control)
{
//画辅助线
setlinecolor(GREEN);
line(begin.x, begin.y, end.x, end.y);
setlinecolor(RED);
line(begin

基于 EasyX图形库的傻瓜式二阶贝塞尔曲线最先出现在Python成神之路

版权声明:
作者:Alex
链接:https://www.techfm.club/p/9347.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>