{% extends "base.html" %} {% block title %}Simulation — {{ program.name or program.program_no }}{% endblock %} {% block heading %}🪛 CNC-Simulation: {{ program.name or program.program_no }}{% endblock %} {% block topbar_actions %} ← Zurück zum Editor {% endblock %} {% block content %}

G-Code

{% for ln in sim.lines %}
{{ "%03d" % ln.no }} {{ ln.text or ' ' }} {% if ln.cycle %} {{ ln.cycle }} {% endif %}
{% endfor %}
{% for c in sim.cycles %} {{ c.name }} — {{ c.label }} {% endfor %}

Werkstück-Simulation (Side-View)

Bereit. Klick „▶ Play" für die Animation.
Stats: {{ sim.stats.total_lines }} Zeilen · {{ sim.stats.total_moves }} Bewegungen ({{ sim.stats.cut_count }} Cuts + {{ sim.stats.rapid_count }} Eilgang) · {{ sim.stats.total_cycles }} Cycle(s)
{% endblock %}