is it possible to apply a texture to a point in mathplotlib? and how to save the wave with the movement of all parts of the graph

ani = animation.FuncAnimation(fig, update_lines, N, fargs=(data_dot, line_dot),interval=10, blit=False) ani1 = animation.FuncAnimation(fig, update_lines, N*6, fargs=(data_dot1, line_dot1),interval=1, blit=False) ani2 = animation.FuncAnimation(fig, update_lines, N*10, fargs=(data_dot2, line_dot2),interval=1, blit=False) ani3 = animation.FuncAnimation(fig, update_lines, N*21, fargs=(data_dot3, line_dot3),interval=1, blit=False) 

There are 4 animations, how can I save them in 1 frame, and not each in a separate

    0