本文整理汇总了Python中matplotlib.patches.Ellipse.set_clip_on方法的典型用法代码示例。如果您正苦于以下问题:Python Ellipse.set_clip_on方法的具体用法?Python Ellipse.set_clip_on怎么用?Python Ellipse.set_clip_on使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.patches.Ellipse
的用法示例。
在下文中一共展示了Ellipse.set_clip_on方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: add_ellipsoid
# 需要导入模块: from matplotlib.patches import Ellipse [as 别名]
# 或者: from matplotlib.patches.Ellipse import set_clip_on [as 别名]
def add_ellipsoid(
ax,
par,
alpha=.75,
edge_color=[1.0,.0,1.0],
face_color='none',
linewidth=2.0,
plain=False):
e = Ellipse(xy=(par[0], par[1]), width=par[3], height=par[2], angle=par[4], linewidth=linewidth)
ax.add_artist(e)
if plain: e.set_clip_on(False)
else: e.set_clip_box(ax.bbox)
if N.array(edge_color).all() == 1.: edge_color = [.5, .5, .5]
e.set_edgecolor(edge_color)
e.set_facecolor(face_color)
e.set_alpha(alpha)