以下の内容はhttps://seinzumtode.hatenadiary.jp/entry/20171207/1512652149より取得しました。


テストG-Codeを生成するPythonプログラム

import math

r = 20
base = 0.5
spd = 4000.0
print("G28")
print("G1 Z%f F%f" % (base,spd))

for h in range(20):
  z = base + h*0.1
  for theta in range(360):
      rad = (theta*math.pi/180.0)
      x = r*math.cos(rad)
      y = r*math.sin(rad)
      print("G1 X%f Y%f Z%f F3000" % (x,y,z))



以上の内容はhttps://seinzumtode.hatenadiary.jp/entry/20171207/1512652149より取得しました。
このページはhttp://font.textar.tv/のウェブフォントを使用してます

不具合報告/要望等はこちらへお願いします。
モバイルやる夫Viewer Ver0.14