本文整理汇总了Python中matplotlib.patches.Ellipse.figobj_hl方法的典型用法代码示例。如果您正苦于以下问题:Python Ellipse.figobj_hl方法的具体用法?Python Ellipse.figobj_hl怎么用?Python Ellipse.figobj_hl使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类matplotlib.patches.Ellipse
的用法示例。
在下文中一共展示了Ellipse.figobj_hl方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: make_newartist
# 需要导入模块: from matplotlib.patches import Ellipse [as 别名]
# 或者: from matplotlib.patches.Ellipse import figobj_hl [as 别名]
def make_newartist(self):
self.check_loaded_gp_data()
x1, y1=self.get_gp(0).get_device_point()
x2, y2=self.get_gp(1).get_device_point()
xy = ((x1+x2)/2, (y1+y2)/2)
w = abs(x1-x2)
h = abs(y1-y2)
if self.getp("isotropic"):
if w>h: w=h
else: h = w
a = Ellipse(xy, w, h, angle = self.getp('angle'),
facecolor='none', fill=False,
edgecolor='black', alpha=1)
lp=self.getp("loaded_property")
if lp is not None:
self.set_artist_property(a, lp[0])
self.delp("loaded_property")
a.figobj=self
a.figobj_hl=[]
a.set_zorder(self.getp('zorder'))
return a