我需要遍历给定数量的采样点。这些采样点是表示方向的归一化向量。它们应该在代码中计算出来。从正向向量开始1, 0
,我想围绕原点旋转,以便得出给定数量的方向。
for(int i = 0; i < number_of_sampling_points; ++i)
{
// get direction vector based on i and number_of_sampling_points
// ...
}
例如, with number_of_sampling_points
is4
在循环内,我想获取值对1, 0
, 0, 1
, -1, 0
, 0, -1
。顺序无关紧要。