本文整理汇总了Python中simulator.Simulator.render_test方法的典型用法代码示例。如果您正苦于以下问题:Python Simulator.render_test方法的具体用法?Python Simulator.render_test怎么用?Python Simulator.render_test使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类simulator.Simulator
的用法示例。
在下文中一共展示了Simulator.render_test方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Plotter
# 需要导入模块: from simulator import Simulator [as 别名]
# 或者: from simulator.Simulator import render_test [as 别名]
import json
import sys
from plotter import Plotter, log
from simulator import Simulator
if __name__ == '__main__':
filename = sys.argv[1]
coords = json.load(open(filename))
plotter = Plotter(width=910, height=800, margin=(50, 100), step_size=10, max_segment=10)
sim = Simulator(plotter_width=plotter.width, plotter_height=plotter.height, margin=plotter.margin, output_directory='output')
cx, cy = (plotter.width / 2), (plotter.height / 2)
plotter.set_initial_position(cx, cy)
log('set initial lengths: %s, %s' % (plotter.m1.string_length, plotter.m2.string_length))
raw_input()
plotter.set_coordinates(coords)
sim.render_test(plotter.coords)
plotter.move_to_start()
plotter.pen_down()
plotter.draw()
plotter.pen_up()
plotter.move_to(cx, cy)