hexo qiniu config Oct 9 2025 9 minutes read (About 1403 words) 简单来说就是七牛可以用来管理图片,加速访问,标准用户有10G的免费存储空间,超出收费 Github毕竟空间有限,而且国内Github访问慢,所以选用了七牛作为图床 Read More
perlin-noise Oct 9 2025 a minute read (About 214 words) 算法过程 设置晶格点,如以整数位置为晶格点 为每个晶格点设定一个梯度值 计算当前采样点位于哪些晶格点内部 计算晶格点到采样点的向量,并与晶格点的梯度点乘 将与各个晶格点的计算结果做插值,二维噪声就做个双线性插值 Read More
debug tool for game develop Oct 9 2025 14 minutes read (About 2116 words) 本文将介绍各类开发调试工具的主要用途以及使用方式 Read More
Color and Radiometry Oct 9 2025 18 minutes read (About 2684 words) 可见光人眼的可见光波谱范围约为370nm~730nm 蓝光:400nm,绿光:550nm,红光:650nm Read More
D3D Event Query Oct 9 2025 6 minutes read (About 879 words) 使用方法事件查询步骤: pDeviceContext->Begin(pQuery) pDeviceContext->End(pQuery) pDeviceContext->GetData(pQuery , &queryData , sizeof(UINT64) , 0) Read More
Disney BRDF Oct 9 2025 a few seconds read (About 102 words) Disney Diffuse BRDF该模型为经验模型,目的是根据材质的roughness表现的不同,平滑的表面更暗一些,粗糙的表面亮一些 Read More