Answers for "pytplot arc"

2

pytplot arc

from matplotlib import patches
import matplotlib.pyplot as plt

figure = plt.figure(figsize = (10, 10))
axes = figure.add_subplot(111)
axes.add_artist(patches.Arc((0, 0), 10, 10, 20, 0, 120, color = 'red'))
Posted by: Guest on December-08-2020

Python Answers by Framework

Browse Popular Code Answers by Language