#include <iostream>
#include <ctime>
#include <GL/glut.h>
#include <math.h>
#include <vector>
using namespace std;
struct Pos
{
int x;
int y;
};
struct Edge
{
int x1, x2;
int y1, y2;
int vx;
int vy;
int a, b, c;
};
struct Poly
{
// 點(diǎn)集
int xx[100];
int yy[100];
// 邊集
Edge Edges[100];
int plotNums = 0; //點(diǎn)數(shù)量
int edgeNums = 0; //邊數(shù)量
// 記錄凹點(diǎn)
int conv = 0;
};
Poly poly;
// 求交點(diǎn)坐標(biāo)
Pos CrossPos(int p1,int p2){
Pos res;
int A1 = poly.Edges[p1].a;
int B1 = poly.Edges[p1].b;
int A2 = poly.Edges[p2].a;
int B2 = poly.Edges[p2].b;
int C1 = poly.Edges[p1].c;
int C2 = poly.Edges[p2].c;
int m = A1 * B2 - A2 * B1;
if (m == 0)
cout <<"第"<<p1<<"邊和第"<<p2<<"邊"<< "無(wú)交點(diǎn)" << endl;
else
{
res.x = (C2*B1 - C1 * B2) / m;
res.y = (C1*A2 - C2 * A1) / m;
}
return res;
}
// 判斷點(diǎn)是否在線段內(nèi)
bool JudgeInLine(Pos pos,Edge edge)
{
int maxX = edge.x1 >= edge.x2 ? edge.x1 : edge.x2;
int minX = edge.x1 <= edge.x2 ? edge.x1 : edge.x2;
int maxY = edge.y1 >= edge.y2 ? edge.y1 : edge.y2;
int minY = edge.y1 <= edge.y2 ? edge.y1 : edge.y2;
if (pos.x<=maxX && pos.x>=minX && pos.y<=maxY && pos.y>=minY)
{
return true;
}
return false;
}
// 求叉積 返回正負(fù)值
int CrossProduct(int n)
{
n = n % poly.edgeNums;
int np = (n + 1) % poly.edgeNums;
return (poly.Edges[n].vx*poly.Edges[np].vy - poly.Edges[np].vx*poly.Edges[n].vy) >= 0 ? 1 : -1;
}
// 切割凹多邊形
void ChangePoly() {
int convP = poly.conv; //凹點(diǎn)的下一個(gè)點(diǎn)
Pos interPos;
for (int i = 0; i < poly.edgeNums; i++)
{
if (i<convP-1 || i>convP+1)
{
interPos = CrossPos(convP, i);
}
}
glClearColor(0.0, 0.0, 0.0, 0.0);
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_POLYGON);
glColor3f(1.0f, 0.0f, 0.0f);
for (int i = 0; i <= convP; i++)
{
glVertex2f(poly.xx[i], poly.yy[i]);
}
glVertex2f(interPos.x, interPos.y);
glEnd();
glBegin(GL_POLYGON);
glColor3f(0.0f, 1.0f, 1.0f);
glVertex2f(interPos.x, interPos.y);
for (int i=convP+1;i<poly.plotNums;i++)
{
glVertex2f(poly.xx[i], poly.yy[i]);
}
glEnd();
glFlush();
}
// 判斷是什么多邊形
bool Judge()
{
/*輸出邊信息*/
for (int i = 0; i < poly.edgeNums; i++)
{
cout << "Vx:" << poly.Edges[i].vx << " " << "Vy:" << poly.Edges[i].vy << " " << "A:" << poly.Edges[i].a<< " " << "B:" << poly.Edges[i].b << " " << "C:" << poly.Edges[i].c <<endl;
}
/*判斷自交*/
Pos interPos;
if (poly.edgeNums > 3)
for (int i = 0; i < poly.edgeNums; i++)
{
interPos = CrossPos(i, (i + 2) % poly.edgeNums);
if (JudgeInLine(interPos, poly.Edges[i]) && JudgeInLine(interPos, poly.Edges[(i + 2) % poly.edgeNums]))
{
cout << "該多邊形為自相交多邊形" << endl;
return false;
}
}
/*判斷凹凸*/
// 判斷向量叉積 是否為同一正負(fù)
int judge;
if (CrossProduct(0) >= 0)
judge = 1;
else
judge = -1;
//判斷每一個(gè)角,兩邊向量乘積是否同符號(hào)
for (int i = 1; i <= poly.edgeNums; i++)
{
if (judge*CrossProduct(i) < 0)
{
poly.conv = i;
ChangePoly();
cout << "該多邊形為凹多邊形" << endl;
return false;
}
}
cout << "該多邊形為凸多邊形" << endl;
return true;
}
void init(void)
{
glClearColor(0.0, 0.0, 0.0, 0.0);
glMatrixMode(GL_PROJECTION);//設(shè)置投影矩陣
gluOrtho2D(0.0, 400.0, 0.0, 300.0);//二維視景區(qū)域
glColor3f(1.0, 0.0, 0.0);
glPointSize(3.0);//點(diǎn)的大小
}
void plotpoint(GLint x, GLint y)
{
glBegin(GL_POINTS);
glVertex2i(x, y);
glEnd();
}
void displayFcn(void)
{
glClearColor(0.0, 0.0, 0.0, 0.0);
glClear(GL_COLOR_BUFFER_BIT);
for (int i = 0; i < poly.plotNums; i++)
{
plotpoint(poly.xx[i], poly.yy[i]);
}
glBegin(GL_POLYGON);
for (int i = 0; i < poly.edgeNums; i++)
{
glVertex2f(poly.xx[i], poly.yy[i]);
}
glEnd();
glFlush();
}
void mouse(GLint button, GLint action, GLint x, GLint y)
{
if (button == GLUT_LEFT_BUTTON && action == GLUT_DOWN)
{
poly.xx[poly.plotNums] = x;
poly.yy[poly.plotNums] = 300 - y;
cout << "x:" << x << " " << "y:" << 300 - y << endl;
poly.plotNums++;
glutPostRedisplay();//重繪窗口
}
if (button == GLUT_RIGHT_BUTTON && action == GLUT_DOWN)
{
poly.edgeNums = poly.plotNums;
if (poly.plotNums > 2)
{
for (int i = 1; i <= poly.plotNums; i++)
{
poly.Edges[i - 1].x1 = poly.xx[i - 1];
poly.Edges[i - 1].y1 = poly.yy[i - 1];
poly.Edges[i - 1].x2 = poly.xx[i%poly.plotNums];
poly.Edges[i - 1].y2 = poly.yy[i%poly.plotNums];
poly.Edges[i - 1].vx = poly.Edges[i - 1].x2 - poly.Edges[i - 1].x1;
poly.Edges[i - 1].vy = poly.Edges[i - 1].y2 - poly.Edges[i - 1].y1;
poly.Edges[i - 1].a = poly.Edges[i - 1].vy;
poly.Edges[i - 1].b = -poly.Edges[i - 1].vx;
poly.Edges[i - 1].c = poly.Edges[i - 1].x2 * poly.Edges[i - 1].y1 - poly.Edges[i - 1].x1 * poly.Edges[i - 1].y2;
}
if (Judge())
glutPostRedisplay();//重繪窗口
}
}
}
int main(int argc, char** argv)
{
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB);
glutInitWindowPosition(50, 100);
glutInitWindowSize(400, 300);
glutCreateWindow("mouse");
init();
glutDisplayFunc(displayFcn);
glutMouseFunc(mouse);
glutMainLoop();
}
[OpenGL] 繪制并且判斷凹凸多邊形奈搜、自相交多邊形义钉。
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)脯燃,“玉大人辕棚,你說(shuō)我怎么就攤上這事∠昴眨” “怎么了补君?”我有些...
- 文/不壞的土叔 我叫張陵挽铁,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我民褂,道長(zhǎng),這世上最難降的妖魔是什么竖哩? 我笑而不...
- 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘拳喻。我一直安慰自己猪腕,他們只是感情好亚亲,可當(dāng)我...
- 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著雹有,像睡著了一般霸奕。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上吉拳,一...
- 那天质帅,我揣著相機(jī)與錄音,去河邊找鬼留攒。 笑死煤惩,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的炼邀。 我是一名探鬼主播魄揉,決...
- 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼拭宁!你這毒婦竟也來(lái)了洛退?” 一聲冷哼從身側(cè)響起,我...
- 序言:老撾萬(wàn)榮一對(duì)情侶失蹤杰标,失蹤者是張志新(化名)和其女友劉穎兵怯,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體腔剂,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡媒区,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了桶蝎。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片驻仅。...
- 正文 年R本政府宣布粘优,位于F島的核電站,受9級(jí)特大地震影響呻顽,放射性物質(zhì)發(fā)生泄漏雹顺。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一廊遍、第九天 我趴在偏房一處隱蔽的房頂上張望嬉愧。 院中可真熱鬧,春花似錦喉前、人聲如沸没酣。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)裕便。三九已至绒净,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間偿衰,已是汗流浹背挂疆。 一陣腳步聲響...
- 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像漏设,于是被迫代替她去往敵國(guó)和親墨闲。 傳聞我的和親對(duì)象是個(gè)殘疾皇子今妄,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- 基礎(chǔ)圖形繪制 之前講解過(guò)盾鳞,OpenGL ES中犬性,只提供了3種基本圖形:點(diǎn)、線腾仅、三角形乒裆。而其他我們熟知的圖形,都是基...
- 高德2d實(shí)現(xiàn)該功能請(qǐng)移步高德2D地圖畫多邊形并判斷某一點(diǎn)是否在多邊形內(nèi);不顯示地圖(用于后臺(tái)小程序等)验辞,判斷經(jīng)緯度...
- 學(xué)習(xí)書籍: OpenGL 超級(jí)寶典(中文第五版) 密碼:fu4w書籍源碼:OpenGL 超級(jí)寶典第五版源代碼 ...