Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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'))
 
PREVIOUS NEXT
Tagged: #pytplot #arc
ADD COMMENT
Topic
Name
1+6 =