[OpenGL] 繪制并且判斷凹凸多邊形奈搜、自相交多邊形义钉。

#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();

}

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末氓英,一起剝皮案震驚了整個(gè)濱河市铝阐,隨后出現(xiàn)的幾起案子徘键,更是在濱河造成了極大的恐慌螟凭,老刑警劉巖它呀,帶你破解...
    沈念sama閱讀 211,123評(píng)論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異烟号,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)汪拥,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,031評(píng)論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)脯燃,“玉大人辕棚,你說(shuō)我怎么就攤上這事∠昴眨” “怎么了补君?”我有些...
    開(kāi)封第一講書人閱讀 156,723評(píng)論 0 345
  • 文/不壞的土叔 我叫張陵挽铁,是天一觀的道長(zhǎng)。 經(jīng)常有香客問(wèn)我民褂,道長(zhǎng),這世上最難降的妖魔是什么竖哩? 我笑而不...
    開(kāi)封第一講書人閱讀 56,357評(píng)論 1 283
  • 正文 為了忘掉前任,我火速辦了婚禮,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘拳喻。我一直安慰自己猪腕,他們只是感情好亚亲,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,412評(píng)論 5 384
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著雹有,像睡著了一般霸奕。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上吉拳,一...
    開(kāi)封第一講書人閱讀 49,760評(píng)論 1 289
  • 那天质帅,我揣著相機(jī)與錄音,去河邊找鬼留攒。 笑死煤惩,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的炼邀。 我是一名探鬼主播魄揉,決...
    沈念sama閱讀 38,904評(píng)論 3 405
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼拭宁!你這毒婦竟也來(lái)了洛退?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書人閱讀 37,672評(píng)論 0 266
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤杰标,失蹤者是張志新(化名)和其女友劉穎兵怯,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體腔剂,經(jīng)...
    沈念sama閱讀 44,118評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡媒区,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,456評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了桶蝎。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片驻仅。...
    茶點(diǎn)故事閱讀 38,599評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖登渣,靈堂內(nèi)的尸體忽然破棺而出噪服,到底是詐尸還是另有隱情,我是刑警寧澤胜茧,帶...
    沈念sama閱讀 34,264評(píng)論 4 328
  • 正文 年R本政府宣布粘优,位于F島的核電站,受9級(jí)特大地震影響呻顽,放射性物質(zhì)發(fā)生泄漏雹顺。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,857評(píng)論 3 312
  • 文/蒙蒙 一廊遍、第九天 我趴在偏房一處隱蔽的房頂上張望嬉愧。 院中可真熱鬧,春花似錦喉前、人聲如沸没酣。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,731評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)裕便。三九已至绒净,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間偿衰,已是汗流浹背挂疆。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,956評(píng)論 1 264
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留下翎,地道東北人缤言。 一個(gè)月前我還...
    沈念sama閱讀 46,286評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像漏设,于是被迫代替她去往敵國(guó)和親墨闲。 傳聞我的和親對(duì)象是個(gè)殘疾皇子今妄,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,465評(píng)論 2 348

推薦閱讀更多精彩內(nèi)容