本文整理汇总了Python中simulation.Simulation.tick方法的典型用法代码示例。如果您正苦于以下问题:Python Simulation.tick方法的具体用法?Python Simulation.tick怎么用?Python Simulation.tick使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类simulation.Simulation
的用法示例。
在下文中一共展示了Simulation.tick方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: from simulation import Simulation [as 别名]
# 或者: from simulation.Simulation import tick [as 别名]
venus.radius = 0.0475
earth.material['diffuse'] = [70/255, 120/255, 200/255, 1.0]
earth.material['ambient'] = [70/255, 120/255, 200/255, 1.0]
earth.radius = 0.05
mars.material['diffuse'] = [216/255, 109/255, 47/255, 1.0]
mars.material['ambient'] = [216/255, 109/255, 47/255, 1.0]
mars.radius = 0.0266
##############
# Program loop
while True:
sim.tick(timestep)
print('#---------#')
for body in sim.bodies:
print('{}\tx: {:7.3f} y: {:7.3f} vx: {:10.3f} vy: {:10.3f}'
.format(body.name, body.x / AU, body.y / AU, body.vx, body.vy))
print('\tvelocity: {:8.3f} km/s distance from sun: {:5.3f} AU'
.format(math.sqrt(body.vx**2 + body.vy**2),
math.sqrt(body.x**2 + body.y**2) / AU))
# render stuff here
interface.render()