| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 3462 人关注过本帖
标题:求opengl画函数图像
取消只看楼主 加入收藏
zjsxwc
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:252
专家分:601
注 册:2011-1-20
结帖率:93.75%
收藏
已结贴  问题点数:30 回复次数:6 
求opengl画函数图像
几天前开帖问过怎么画函数图像,说用opengl,一片迷茫,故求opengl画函数图像的代码,最好带注释,谢谢,比如画正弦函数图像
搜索更多相关主题的帖子: 最好 
2011-02-04 18:34
zjsxwc
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:252
专家分:601
注 册:2011-1-20
收藏
得分:0 
把源码发出来吧

The tools I recommended:
GUI: CSharp(VS), QT;    Core Code: Plain C (Tiny C Compiler);    Web: Python, JavaScript;    Android: Java;    Embedded System: ASM&C (Linux)
2011-02-04 18:43
zjsxwc
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:252
专家分:601
注 册:2011-1-20
收藏
得分:0 
回复 4楼
差点这贴要水了,坐等源码and注释出现

[ 本帖最后由 zjsxwc 于 2011-2-4 19:07 编辑 ]

The tools I recommended:
GUI: CSharp(VS), QT;    Core Code: Plain C (Tiny C Compiler);    Web: Python, JavaScript;    Android: Java;    Embedded System: ASM&C (Linux)
2011-02-04 18:54
zjsxwc
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:252
专家分:601
注 册:2011-1-20
收藏
得分:0 
回复 6楼 点线面
我这只有codeblocks这个编译器,他能用gl之类的,但是用你给的glut会提示undefine,怎么回事,是不是这个glut太老了1998年的,而我的gl是2008年的
图片附件: 游客没有浏览图片的权限,请 登录注册

The tools I recommended:
GUI: CSharp(VS), QT;    Core Code: Plain C (Tiny C Compiler);    Web: Python, JavaScript;    Android: Java;    Embedded System: ASM&C (Linux)
2011-02-04 22:03
zjsxwc
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:252
专家分:601
注 册:2011-1-20
收藏
得分:0 
晕死,弄了半天还是用不了glut,你们什么ide啊

The tools I recommended:
GUI: CSharp(VS), QT;    Core Code: Plain C (Tiny C Compiler);    Web: Python, JavaScript;    Android: Java;    Embedded System: ASM&C (Linux)
2011-02-04 23:22
zjsxwc
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:252
专家分:601
注 册:2011-1-20
收藏
得分:0 
#include<math.h>
#include<GL/glut.h>
# define fun (sin(x)*(tan(x)+cos(x)))
const int screenWidth = 640;   // width of screen window in pixels
const int screenHeight = 480;  // height of screen window in pixels
GLdouble A,B,C,D; // values used for scaling and shifting

//----------Initialization--------------
void init(void)
{
    glClearColor(1.0,1.0,1.0,0.0); // Set white background color
    glColor3f(0.0f,0.0f,0.0f);    // Drawing color is black
    glPointSize(2.0);             // a ''dot'' is 2 by 2 pixels
    glMatrixMode(GL_PROJECTION);  // Set "camera shape"
    glLoadIdentity();
    gluOrtho2D(0.0,(GLdouble)screenWidth,0.0,(GLdouble)screenHeight);
    // Set values used for scaling and shifting
    A = screenWidth/16.0;
    B = screenWidth/2.0;
    C = D = screenHeight/2.0;

}
// --------Draw the "dot plots" of a function------

GLdouble h(GLdouble x)
{
         return fun;
}

void dotPlots(void)
{
     GLdouble x;
     glClear(GL_COLOR_BUFFER_BIT);       //clear the screen
     glBegin(GL_POINTS);
     for(x=-16.0;x<16.0;x+=0.0001)
     {
    //GLdouble func = exp(-x) * cos(2*3.14159265*x);
               GLdouble func = h(x);
               glVertex2d(A*x+B,(C*func/20.0+D));
      }
      glEnd();
    // Draw a horizontal line
       glBegin(GL_LINES);
       glVertex2i(0,screenHeight/2);
       glVertex2i(screenWidth,screenHeight/2);
       glEnd();
       glBegin(GL_LINES);
       glVertex2i(screenWidth/2,0);
       glVertex2i(screenWidth/2,screenHeight);
       glEnd();
       glFlush(); //send all output to display
}

 main(int argc,char** argv)
{
    glutInit(&argc, argv);  // Initialize the toolkit
    glutInitDisplayMode(GLUT_RGB | GLUT_SINGLE);  // Set display mode
    glutInitWindowPosition(100, 150);  // Set window pozition on screen
    glutInitWindowSize(screenWidth, screenHeight);      // Set window size
    glutCreateWindow("Dot plot of a Function"); // Open the screen window
    glutDisplayFunc(dotPlots); // Register redraw function
    init();
    glutMainLoop();  // Go into a perpetual loop
}

The tools I recommended:
GUI: CSharp(VS), QT;    Core Code: Plain C (Tiny C Compiler);    Web: Python, JavaScript;    Android: Java;    Embedded System: ASM&C (Linux)
2011-02-06 14:22
zjsxwc
Rank: 7Rank: 7Rank: 7
等 级:黑侠
威 望:1
帖 子:252
专家分:601
注 册:2011-1-20
收藏
得分:0 
原来这么简单啊

The tools I recommended:
GUI: CSharp(VS), QT;    Core Code: Plain C (Tiny C Compiler);    Web: Python, JavaScript;    Android: Java;    Embedded System: ASM&C (Linux)
2011-02-06 14:23
快速回复:求opengl画函数图像
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.034401 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved