为什么我的glDrawArrays不绘制我存储的点?

问题描述 投票:1回答:1

我正在尝试创建一个简单的程序来绘制单击点。我声明一个struct,其中包含每个点的坐标和颜色。我声明一个包含点列表的全局vector< Point > 。鼠标输入被很好地记录并打印在cout上,但是没有画出点。知道为什么我在GLUT的初始化中会丢失吗?

#include <GL/freeglut_std.h>
#include <GL/gl.h>
#include <vector>
#include <iostream>
using namespace std;

struct Point
{
  float x, y;
  unsigned char r, g, b, a;
};

vector< Point > points;

void drawPoints() 
{
  glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
  glMatrixMode(GL_PROJECTION);
  glLoadIdentity();
  glOrtho(-50, 50, -50, 50, -1, 1);

  glMatrixMode(GL_MODELVIEW);
  glLoadIdentity();

  // draw
  glColor3ub( 255, 255, 255 );
  glEnableClientState( GL_VERTEX_ARRAY );
  glEnableClientState( GL_COLOR_ARRAY );
  glVertexPointer( 2, GL_FLOAT, sizeof(Point), &points[0].x );
  glColorPointer( 4, GL_UNSIGNED_BYTE, sizeof(Point), &points[0].r );
  glPointSize( 3.0 );
  glDrawArrays( GL_POINTS, 0, points.size() );
  glDisableClientState( GL_VERTEX_ARRAY );
  glDisableClientState( GL_COLOR_ARRAY );

  glFlush();
  glutSwapBuffers();
}

void OnMouseClick(int button, int state, int x, int y)
{
  if (button == GLUT_LEFT_BUTTON && state == GLUT_UP)
  {
    //store the x,y value where the click happened
    Point p = Point();
    p.x = (float)x;
    p.y = (float)y;
    p.r = 255;
    p.g = 255;
    p.b = 255;
    p.a = 255;
    points.push_back(p);
    for (vector<Point>::iterator it = points.begin(); it != points.end(); ++it) 
    {
       cout << it->x << " " << it->y << "   " << flush;
    }
    cout << endl;
    glutPostRedisplay();
  }
}

int main(int argc, char **argv) 
{
  glutInit(&argc, argv);
  glutInitDisplayMode(GLUT_RGBA | GLUT_DEPTH | GLUT_DOUBLE);

  glutInitWindowSize(500, 500);
  glutInitWindowPosition(100, 100);
  glutCreateWindow("OpenGL - Drawing points");
  glutDisplayFunc(drawPoints);
  glutMouseFunc(OnMouseClick);
  glutMainLoop();
  return 0;
}
c++ opengl glut opengl-compat
1个回答
1
投票

坐标系不匹配,或者将GLUT的鼠标坐标转换为您选择的glOrhto()坐标系,或者更改该调用以匹配GLUT的鼠标坐标系。

第二种方式的示例:

#include <GL/glut.h>
#include <vector>
using namespace std;

struct Point
{
    float x, y;
    unsigned char r, g, b, a;
};

vector< Point > points;

void drawPoints()
{
    glClear( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT );

    glMatrixMode( GL_PROJECTION );
    glLoadIdentity();
    GLdouble w = glutGet( GLUT_WINDOW_WIDTH );
    GLdouble h = glutGet( GLUT_WINDOW_HEIGHT );
    glOrtho( 0, w, h, 0, -1, 1 );

    glMatrixMode( GL_MODELVIEW );
    glLoadIdentity();

    // draw
    if( !points.empty() )
    {
        glColor3ub( 255, 255, 255 );
        glEnableClientState( GL_VERTEX_ARRAY );
        glEnableClientState( GL_COLOR_ARRAY );
        glVertexPointer( 2, GL_FLOAT, sizeof( Point ), &points[ 0 ].x );
        glColorPointer( 4, GL_UNSIGNED_BYTE, sizeof( Point ), &points[ 0 ].r );
        glPointSize( 3.0 );
        glDrawArrays( GL_POINTS, 0, points.size() );
        glDisableClientState( GL_VERTEX_ARRAY );
        glDisableClientState( GL_COLOR_ARRAY );
    }

    glutSwapBuffers();
}

void OnMouseClick( int button, int state, int x, int y )
{
    if( button == GLUT_LEFT_BUTTON && state == GLUT_UP )
    {
        //store the x,y value where the click happened
        Point p = Point();
        p.x = (float)x;
        p.y = (float)y;
        p.r = 255;
        p.g = 255;
        p.b = 255;
        p.a = 255;
        points.push_back( p );
        glutPostRedisplay();
    }
}

int main( int argc, char **argv )
{
    glutInit( &argc, argv );
    glutInitDisplayMode( GLUT_RGBA | GLUT_DEPTH | GLUT_DOUBLE );

    glutInitWindowSize( 500, 500 );
    glutInitWindowPosition( 100, 100 );
    glutCreateWindow( "OpenGL - Drawing points" );
    glutDisplayFunc( drawPoints );
    glutMouseFunc( OnMouseClick );
    glutMainLoop();
    return 0;
}
© www.soinside.com 2019 - 2024. All rights reserved.