- 博客(8)
- 资源 (9)
- 收藏
- 关注
原创 齐次空间的裁剪
图形流水线中齐次空间的裁剪(1)1. 本文将分为下面三部分 引入:为什么不在投影除法后裁剪? 为什么能用齐次坐标进行裁剪 使用齐次坐标裁剪的步骤 2. 引入:为什么不在投影除法后裁剪 在齐次空间对顶点和线裁剪是如今图形学管线进行裁剪的标准做法。一个世界坐标系下点经过观察变换后会映射到屏幕空间,在这其中会经过如下的矩阵变换:世界坐标系到相机坐标系的变化,相机坐标系下的透视投影变换到规范化空
2015-04-15 10:01:07
7345
3
转载 The Elements of Programming Style
The Elements of Programming Style Brian Kernighan, P. J. Plauger Introduction Write clearly - don't be too clever. Expression Say what you mean, simply and directly.Use library functions.Avoi
2014-07-30 21:19:04
467
转载 详细解说 STL 排序(Sort)(转载)
http://www.cppblog.com/mzty/archive/2005/12/15/1770.html 不要重复发明轮子。
2014-04-06 12:53:20
941
转载 几个网址
1: Wiki网站专门收集了国际上每年计算机类会议的call for paper,http://www.wikicfp.com/ 2:http://www.meeting.edu.cn/
2013-05-27 22:05:32
537
转载 tsp的动态规划实现,最短长度和最短路径
#include "stdio.h" #include "string.h" #define INF 999999999 typedef struct _node { int value; //indicate the value of the minimum distance of the state in this phase. int min_index; //keep t
2012-11-25 17:09:28
1181
Prentice.Hall.W.Kernighan&Dennis.M.Ritchie.The.C.Programming.Language.2nd.Edition 的官方答案
2010-04-05
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人