Last active
August 19, 2020 00:54
-
-
Save ahmedazizkhelifi/cb7b61ee137695ec7bea6c61b87d666e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
planet = vp.sphere(pos=vp.vector(1,0,0), radius=0.05, color=vp.color.green, | |
mass = 1, momentum=vp.vector(0,30,0), make_trail=True ) | |
star = vp.sphere(pos=vp.vector(0,0,0), radius=0.2, color=vp.color.yellow, | |
mass = 2.0*1000, momentum=vp.vector(0,0,0), make_trail=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment