How can I compute points along a circle that lays on a plane given the following:
- center $P$ = $(a, b, c)$
- radius $r$
- plane equation $2x - 8y + 5z = 18$
I need to find points along this circle from $[0,2\pi]$ in $\frac{\pi}{4}$ increments. In 2D I would do this like:
$$x = a + r * \cos{\theta}$$ $$y = b + r * \cos{\theta}$$
But I am not sure how I would do this in 3D to include Z.
I've found this and this but I'm not fully understanding how they are getting their perpendicular vectors; I know that the normal vector to the plane $n$ is $\langle 2, -8, 5 \rangle$.