This is a beta 3D circle generator to help myself and others learn how to map points and control the pen to simulate a bi-planar experience (3D :P ). Please check out the code and learn/give advice. variables: - 'x_rotation' controls rotation on the x axis - 'y_rotation' controls rotation on y and constantly changes to create circular shape (no user interaction) - 'speed' controls the scalar by which the the y rotation is changed - 'size' affects the radius and therefore the thickness of the line - 'z_rotation' **should** control rotation on z axis (not implemented), please see 'Notes and Credits'
I would appreciate help on how I can create rotation on z so that, for example, a horizontal circle (with x_rotation as 0) will become vertical. Or a slightly horizontal ovular shape (ignoring thickness of line) will rotate on the xy plane with change of z. I have tried many ways and the closest to achieving what I want has been; [set y to (size * [(cos [y + z]) * (sin x)])] Thanks in advance