J.c
Results
52
issues of
J.c
https://aotu.io/notes/2017/02/16/2d-collision-detection/index.html 讲述了在 Web 开发中常见的几种 2D 碰撞检测,内含运行实例(基于 Canvas)、图片说明。
Gitalk
bm90ZXMvMjAxNy8wMi8xNi8yZC1jb2xsaXNpb24tZGV0ZWN0aW9uLw==
你好,我对第 1.5 章(P41)的 Box-Muller 算法存在以下疑问: https://github.com/AlloVince/physics_mathematics_skills_for_game_development/blob/4130a0a1d5fba4235293dc177c89c9b2bc9e166d/01_Movement/Source/Movement_5_2.cpp#L76 的 `( rand() + 1 ) / ( RAND_MAX + 1 )` 这里: 1. rand() 返回 [0, 1),RAND_MAX 为 1,那么得到结果就不是 [0, 1) 的随机数,而是 [0.5,...