11 2013 档案

摘要:来自酷壳:http://coolshell.cn/articles/7779.htmlhttp://coolshell.cn/articles/8052.html 阅读全文
posted @ 2013-11-18 15:05 杨溪 阅读(527) 评论(0) 推荐(0)
摘要:百度百科:http://baike.baidu.com/link?url=MhoDsQewBWe8vWMFEz1f9SmyjE5HzBYlq9mBm1848XZbkZDDAXD1khQntJf9wMMnIZ5GN08qVg4gQkcXcEPRLa一个物体在不同坐标系之间的坐标变换。如从世界坐标系到观察坐标系的变换;观察坐标到设备坐标之间的变换。再如,对物体造型时,我们通常在局部坐标系中构造物体,然后重新定位到用户坐标系。坐标变换的构造方法:与二维的情况相同,为将物体的坐标描述从一个系统转换为另一个系统,我们需要构造一个变换矩阵,它能使两个坐标系统重叠。具体过程分为两步:(1)平移坐标系统oxy 阅读全文
posted @ 2013-11-17 14:15 杨溪 阅读(5905) 评论(0) 推荐(0)
摘要:环境:win7 + vs2010 + C++实现vector的sort算法,在类的头文件中写入比较函数时会出现链接错误:error LNK2005: "bool __cdecl compare_index(class TestIndex const *,class TestIndex const *)" (?compare_index@@YA_NPBVTestIndex@@0@Z) already defined in main.objfatal error LNK1169: one or more multiply defined symbols found解决方法: 1 阅读全文
posted @ 2013-11-13 12:45 杨溪 阅读(446) 评论(0) 推荐(0)
摘要:找了好久才发现了一个这么方便的C++矩阵库。官网http://eigen.tuxfamily.org/index.php?title=Main_Page参考文章http://blog.csdn.net/abcjennifer/article/details/7781936http://www.cnblogs.com/tornadomeet/archive/2012/12/11/2813842.html超好用,解压后,直接加载就可以。 阅读全文
posted @ 2013-11-08 23:00 杨溪 阅读(944) 评论(0) 推荐(0)