pytplot arc

Solutions on MaxInterview for pytplot arc by the best coders in the world

showing results for - "pytplot arc"
Jacopo
26 Mar 2018
1from matplotlib import patches
2import matplotlib.pyplot as plt
3
4figure = plt.figure(figsize = (10, 10))
5axes = figure.add_subplot(111)
6axes.add_artist(patches.Arc((0, 0), 10, 10, 20, 0, 120, color = 'red'))