当前位置: 首页>>代码示例>>Python>>正文


Python Rectangle.axes方法代码示例

本文整理汇总了Python中matplotlib.patches.Rectangle.axes方法的典型用法代码示例。如果您正苦于以下问题:Python Rectangle.axes方法的具体用法?Python Rectangle.axes怎么用?Python Rectangle.axes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在matplotlib.patches.Rectangle的用法示例。


在下文中一共展示了Rectangle.axes方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: generate_artist

# 需要导入模块: from matplotlib.patches import Rectangle [as 别名]
# 或者: from matplotlib.patches.Rectangle import axes [as 别名]
    def generate_artist(self, *args, **kywds):
#        print 'entering fig_grp:: generate_artist'
        for name, child in self.get_children():
            if child._suppress:
                child.del_artist(delall=True)
            else:
                child.generate_artist(*args, **kywds)
            
        ax = self.get_figaxes()
        c = self.get_container()
        if self.isempty():
           a = Rectangle((0,0), 1, 1, facecolor='none', fill=False,
                      edgecolor='none', alpha=0)
           a.figobj=self
           a.figobj_hl=[]
           self._artists = [a]
           c.patches.append(a)
           if ax is not None and ax.get_3d():
               import mpl_toolkits.mplot3d.art3d as art3d
               art3d.patch_2d_to_3d(a)

           figure = self.get_figpage()._artists[0]
           a.set_figure(figure)
           if self.get_figaxes() is not None:
               if len(self.get_figaxes()._artists) != 0:
                   a.axes = self.get_figaxes()._artists[0]
开发者ID:piScope,项目名称:piScope,代码行数:28,代码来源:fig_grp.py


注:本文中的matplotlib.patches.Rectangle.axes方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。