
图形学基础
文章平均质量分 80
v_xchen_v
这个作者很懒,什么都没留下…
展开
-
搭建Mac下的OpenGL环境
OpenGL libraryglfw下载:http://www.glfw.org/download.htmlMac OS和Linux上需要下载github上的source文件并编译。下载cmake,可以直接下载dmg双击安装:https://cmake.org/download/安装后在终端中还是没有识别cmake,需要我们将cmake的路径加到bash_profile文件中。原创 2017-03-06 11:34:40 · 12174 阅读 · 1 评论 -
OpenGL基于glfw库的画点、画线、画三角
代码如下:#include void drawPoint(){ /* Draw a point */ glClearColor (0.0, 0.0, 0.0, 0.0); glClear(GL_COLOR_BUFFER_BIT); glPointSize(2.0f); glBegin(GL_POINTS); glColo原创 2017-04-01 17:44:51 · 7696 阅读 · 5 评论 -
自己动手实现光栅化直线生成算法
前期准备:搭建可以在屏幕上画一个像素的开发环境,我使用OpenGL的glfw库来画点。为了提高画线算法的可读性,我先把自己使用的画点函数写出来//点 绘制/*x,y - position R,G,B - color*/void drawPoint(point2D point,float R,float G,float B,float pointSize);常用的直线生成算法有:原创 2017-04-28 14:54:30 · 3699 阅读 · 0 评论 -
【译】值噪声与过程性纹理_Part 1
原文链接:Value Noise and Procedural Patterns_Part 1值噪声和程序纹理Keywords: value noise, procedural pattern generation, deterministic, random number generator, RNG, periodic, continuity, differentiability,...翻译 2018-04-21 20:14:11 · 1928 阅读 · 0 评论