len3d

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页

2012年4月18日

摘要: 在VS里面选择:Tools > Import and Export Settings… > Reset all settings删掉当前设置!本人亲自尝试过,立刻变得飞快! 阅读全文
posted @ 2012-04-18 16:29 Len3d 阅读(1135) 评论(2) 推荐(0) 编辑

2012年4月14日

摘要: Assume a parametric curve can be denoted by P(t), any attribute T can be interpolated linearly with:T = (1 - t) * T0 + t * T1 (1)T0 is the attribute at t=0, and T1 is the attribute at t=1.Differentiate equation (1) we have:dTdx = (T1 - T0) * dtdx (2)Now the problem turns into how to compute dtdx.Usi 阅读全文
posted @ 2012-04-14 22:50 Len3d 阅读(297) 评论(0) 推荐(0) 编辑

2012年4月10日

摘要: MC:QMC:RQMC:Convergence speed:QMC > RQMC > MCSampling patterns:QMC > RQMC > MCSo RQMC is the balance between MC and QMC. 阅读全文
posted @ 2012-04-10 08:37 Len3d 阅读(420) 评论(2) 推荐(0) 编辑

2012年3月9日

摘要: http://cgg.mff.cuni.cz/~jaroslav/papers/2008-irradiance_caching_class/05-jk-implementation_details.pdf 阅读全文
posted @ 2012-03-09 15:21 Len3d 阅读(189) 评论(0) 推荐(0) 编辑

2012年2月11日

摘要: // at process start call init_pthread_suspending to install the handlers// to suspend a thread use pthread_kill(thread_id, SUSPEND_SIG)// to resume a thread use pthread_kill(thread_id, RESUME_SIG)#include <signal.h>#define RESUME_SIG SIGUSR2#define SUSPEND_SIG SIGUSR1static sigset_t wait_mask; 阅读全文
posted @ 2012-02-11 00:08 Len3d 阅读(546) 评论(1) 推荐(0) 编辑

2011年10月18日

摘要: 错误提示是:Runtime Pre-requisites: [2] Error: Installation failed for component Runtime Pre-requisites. MSI returned error code 16031. 如果你的机器上有.NET Framework 4.0 Extended和.NET Framework 4.0 Client Profile,卸载它们。2. 重启电脑,这步是必需的。3. 使用Run as Administrator方式运行Visual Studio 2008的setup.exe。这样应该就能成功安装了。 阅读全文
posted @ 2011-10-18 13:20 Len3d 阅读(1142) 评论(0) 推荐(0) 编辑

2011年9月9日

摘要: For triangles, as well as other planar shapes, there's an affine mapping from parametric space to object space, said M.In parametric space, we know the parametric coordiantes for 3 triangle corners are (u0, v0), (u1, v1), (u2, v2) respectively.While in object space, the 3D coordinates for 3 tria 阅读全文
posted @ 2011-09-09 14:46 Len3d 阅读(14988) 评论(0) 推荐(0) 编辑

2011年7月26日

摘要: 1. Processing each l-th primitive at the binning step, where l=log10(N) and N is number of primitives in the current node.2. Experiments demonstrated that it is beneficial to switch to exact SAH computation when the number of primitives in the current node is less or equal to the number of bins.3. E 阅读全文
posted @ 2011-07-26 14:26 Len3d 阅读(271) 评论(0) 推荐(0) 编辑

2011年7月15日

摘要: Here are some tips:1. Convert all VC projects to ICL projects by Use Intel C++.2. SetStructure Alignmentto 1 byte or 4 byte, otherwise ICL may default to 16 byte.3. If you don't want to have dependency on libmmd.dll, use Multi-threaded rather than Multi-threaded DLL to static link with ICL runti 阅读全文
posted @ 2011-07-15 18:02 Len3d 阅读(626) 评论(0) 推荐(1) 编辑

2011年5月25日

摘要: Number Greek Latin ------ ----- ----- 1 mono- uni- 2 duo-/di- duo-/bi- 3 tri- tri- 4 tetra- quad- 5 penta- quint- 6 hex- sex- 7 hept- sept- 8 oct- oct- 9 ennea- non- 10 dec- dec- 20 icosa- vigint- 30 triaconta- trigint- 40 tetraconta- quadragint- 50 pentaconta- quinquagint- 60 hexaconta- sexagint- . 阅读全文
posted @ 2011-05-25 11:02 Len3d 阅读(252) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 30 下一页