Commit fa6f113a authored by Guillaume Seguin's avatar Guillaume Seguin

Speedup new viz by flattening colors list

parent 33b707bf
...@@ -403,7 +403,11 @@ class GcodeModel(Model): ...@@ -403,7 +403,11 @@ class GcodeModel(Model):
index_list += new_indices index_list += new_indices
vertex_list += new_vertices vertex_list += new_vertices
color_list += [gline_color] * len(new_vertices) new_colors = []
for i in range(len(new_vertices)):
new_colors += gline_color
color_list += new_colors
[gline_color] * len(new_vertices)
prev_is_extruding = True prev_is_extruding = True
prev_move_x = delta_x prev_move_x = delta_x
prev_move_y = delta_y prev_move_y = delta_y
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment