自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

听雨草堂

随便谈谈

  • 博客(6)
  • 收藏
  • 关注

原创 【计算机图形学】六、Mandelbrot集

1. 算法2. 源代码#include "stdafx.h"#include "GL/glut.h"#include "stdlib.h"#include "math.h"float xmin=-2.00,xmax=0.50;float ymin=-1.25,ymax=1.25;void init(){ glClearColor(1.0,1.0,

2013-01-19 15:04:46 1777

原创 【计算机图形学】五、Julia集

1. 算法2. 源代码#include "stdafx.h"#include "GL/glut.h"#include "stdlib.h"#include "math.h"void init(){ glClearColor(1.0,1.0,1.0,0.0); glMatrixMode(GL_PROJECTION); gluOrtho2D(-0.

2013-01-19 15:00:16 1661

原创 【计算机图形学】四、B样条曲线的生成

1.算法2. 源代码#include "stdafx.h"#include "GL/glut.h"#include "stdlib.h"void init(){ glClearColor(1.0,1.0,1.0,0.0); glMatrixMode(GL_PROJECTION); gluOrtho2D(0.0,600.0,0.0,400.

2013-01-18 15:42:18 5988 1

原创 【计算机图形学】三、bezier曲线的生成

1. 算法2. 源代码#include "stdafx.h"#include "GL/glut.h"#include "stdlib.h"#include "math.h"void init(){ glClearColor(1.0,1.0,1.0,0.0); glMatrixMode(GL_PROJECTION); gluOrtho2D(0.0

2013-01-18 15:38:03 4144

原创 【计算机图形学】二、椭圆的生成

1. 算法2. 源代码#include "stdafx.h"#include "GL/glut.h"#include "stdlib.h"void init(){ glClearColor(1.0,1.0,1.0,0.0); glMatrixMode(GL_PROJECTION); gluOrtho2D(0.0,600.0,0.0,400

2013-01-18 15:32:55 2161 1

原创 【计算机图形学】一、直线的生成

1. 算法:2. 源代码:#include "stdafx.h"#include "GL/glut.h"#include "stdlib.h"#include "math.h"void init(){ glClearColor(1.0,1.0,1.0,0.0); glMatrixMode(GL_PROJECTION); gluOrtho2D(0.0,20

2013-01-18 15:21:51 1389

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除