I want to draw different types of lines, such as, white lane, yellow lane, white long lane and so on, but when I call visual.Line() eachtime, it can only keep the last draw-event , just only one type of lane in the Canvas. Does Vispy has the same or likely operation like plot, we can plot different lines by calling plot times? Can anybody help me, I will be appreciated it a lot!
Here is code:
for i in range(len(white_lane_nodes)-1):
white_lane = visuals.Line(pos=white_lane_nodes[i],
connect=lane_pair,
color=white,
parent=view.scene)
for i in range(len(yellow_lane_nodes)-1):
yellow_lane = visuals.Line(pos=yellow_lane_nodes[i],
connect=lane_pair,
color=orange,
parent=view.scene)
I tried the example code to update line, but it didn't works the way that I want, I dont need the Timer.
def update(event):
for line in lines:
cale = [np.sin(np.pi * event.elapsed)+2,
np.cos(np.pi * event.elapsed)+2]
line.transform.scale = scale
timer = app.Timer('auto', connect=update, start=True)
You mean this example, right?
https://vispy.org/gallery/scene/line.html
In that original example code, this is how the lines are created:
Note how the line objects are created (
line = scene.visuals.Line
) and then stored in alines
list (lines.append(line)
). Your code doesn't seem to have this list oflines
. Try adding that back in and it should work.If that doesn't work, check the output of your script for errors. If there are any you can update your question above with the new information and comment on this answer to let me know that you've made an update.