I need to write a program that simulates a ring going down a hill showing the velocity vector. Or at least a simulation of a circle rotating with a velocity vector. It doesn't necessarily need to be going down a hill. This is what I have so far. Thank you so much to anyone that can help.
'''
cylinderhill.py
'''
from visual import *
from math import *
inclinedPlane = box(pos = vector(1, 0, 0), size = (2, 0.2, 0.2), color = color.blue)
cir = ring(pos=(5,0,0), axis=(5,0,0), radius = (.05), thickness = (.01), color = color.red)
cir.vel = vector(1,1)