OpenGL繪制三次Bezier曲線
本文實(shí)例為大家分享了OpenGL繪制三次Bezier曲線的具體代碼,供大家參考,具體內(nèi)容如下
計(jì)算公式:

運(yùn)行結(jié)果:

代碼如下:
#include<gl/glut.h>
#include<math.h>
#include<windows.h>
#include<vector>
#include<algorithm>
using namespace std;
struct Point
{
int x, y;
Point(){};
Point(int tx, int ty)
{
x = tx;
y = ty;
}
};
vector<Point> p;
double getRatio(double t,double a,double b,double c,double d)
{
return a * pow(t, 3) + b * pow(t, 2) + c * t + d;
}
void Bezier()
{
int n = 500;
double derta = 1.0 / n;
glPointSize(2);
glColor3d(0, 0, 0);
glBegin(GL_POINTS);
for (int i = 1; i < n; i++)
{
double t = derta * i;
double ratio[4];
ratio[0] = getRatio(t, -1, 3, -3, 1);
ratio[1] = getRatio(t, 3, -6, 3, 0);
ratio[2] = getRatio(t, -3, 3, 0, 0);
ratio[3] = getRatio(t, 1, 0, 0, 0);
double x=0, y=0;
for (int j = 0; j < 4; j++)
{
x += ratio[j] * p[j].x;
y += ratio[j] * p[j].y;
}
glVertex2d(x, y);
}
glEnd();
}
void myDisplay()
{
glClear(GL_COLOR_BUFFER_BIT); //清除顏色緩存和深度緩存
//畫點(diǎn)
glPointSize(5);
glColor3d(1, 0, 0);
glBegin(GL_POINTS);
for (int i = 0; i < p.size(); i++)
glVertex2d(p[i].x, p[i].y);
glEnd();
//畫線
glLineWidth(2);
glColor3d(0, 1, 0);
glBegin(GL_LINE_STRIP);
for (int i = 0; i < p.size(); i++)
glVertex2d(p[i].x, p[i].y);
glEnd();
if (p.size() == 4)
Bezier();
glFlush();
}
void mouse(int button, int state, int x, int y)
{
if (button == GLUT_LEFT_BUTTON && state == GLUT_DOWN && p.size() < 4)
{
Point t(x, y);
p.push_back(t);
glutPostRedisplay();
}
}
void Reshape(int w, int h) //兩個(gè)參數(shù):窗口被移動(dòng)后大小
{
glViewport(0, 0, w, h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluOrtho2D(0, w, h, 0);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
}
void initWindow(int &argc, char *argv[], int width, int height, char *title) //初始化并顯示到屏幕中央
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowPosition((GetSystemMetrics(SM_CXSCREEN) - width) >> 1, (GetSystemMetrics(SM_CYSCREEN) - height) >> 1); //指定窗口位置
glutInitWindowSize(width, height); //指定窗口大小
glutCreateWindow(title);
glClearColor(1, 1, 1, 0);
glShadeModel(GL_FLAT);
}
int main(int argc, char *argv[])
{
initWindow(argc, argv, 600, 600, "四點(diǎn)畫Bezier曲線");
puts("\n\t鼠標(biāo)在窗口點(diǎn)擊四次后自動(dòng)繪制出Bezier曲線");
glutDisplayFunc(myDisplay);
glutReshapeFunc(Reshape);
glutMouseFunc(mouse);
glutMainLoop();
return 0;
}
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
C語(yǔ)言 數(shù)據(jù)結(jié)構(gòu)雙向鏈表簡(jiǎn)單實(shí)例
這篇文章主要介紹了C語(yǔ)言 數(shù)據(jù)結(jié)構(gòu)雙向鏈表簡(jiǎn)單實(shí)例的相關(guān)資料,需要的朋友可以參考下2017-03-03
Qt實(shí)現(xiàn)FTP的上傳和下載的實(shí)例代碼
本篇文章主要介紹了Qt實(shí)現(xiàn)FTP的上傳和下載的實(shí)例代碼,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來(lái)看看吧2017-07-07
C++?構(gòu)造函數(shù)學(xué)習(xí)筆記
這篇文章主要為大家介紹了C++?構(gòu)造函數(shù)學(xué)習(xí)筆記,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-10-10
Qt實(shí)現(xiàn)圖片移動(dòng)實(shí)例(圖文教程)
這學(xué)期實(shí)訓(xùn)的時(shí)候用MFC做過一個(gè)飛機(jī)大戰(zhàn),很無(wú)聊的東西,一直想用Qt做一個(gè);首先需要解決的問題是圖片的移動(dòng),怎么說(shuō)飛機(jī)啊子彈啊都是動(dòng)著的,圖片當(dāng)然要跑起來(lái),感興趣的你可不要走開啊2013-01-01
C++ 非遞歸實(shí)現(xiàn)二叉樹的前中后序遍歷
本文將結(jié)合動(dòng)畫和代碼演示如何通過C++ 非遞歸實(shí)現(xiàn)二叉樹的前中后序的遍歷,代碼具有一定的價(jià)值,感興趣的同學(xué)可以學(xué)習(xí)一下2021-11-11
ubuntu系統(tǒng)vscodeC++編譯環(huán)境配置與使用方式
這篇文章主要介紹了ubuntu系統(tǒng)vscodeC++編譯環(huán)境配置與使用方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-12-12

