本文简要介绍 python 语言中 matplotlib.transforms.Affine2DBase
的用法。
-
基础:
AffineBase
所有二维仿射变换的基类。
使用 3x3 numpy 数组执行 2D 仿射变换:
a c e b d f 0 0 1
该类提供只读接口。对于可变 2D 仿射变换,请使用
Affine2D
。此类的子类通常只需要覆盖生成自定义 3x3 矩阵的构造函数和
get_matrix
。- 参数:
- shorthand_name str
-
表示转换的"name" 的字符串。该名称除了在 DEBUG=True 时提高
str(transform)
的可读性之外没有任何意义。
用法
class matplotlib.transforms.Affine2DBase(*args, **kwargs)
相关用法
- Python matplotlib Affine2D.set_matrix用法及代码示例
- Python matplotlib Affine2D.__init__用法及代码示例
- Python matplotlib Affine2D用法及代码示例
- Python matplotlib Affine2D.from_values用法及代码示例
- Python matplotlib Affine2D.get_matrix用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib AbstractMovieWriter用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib Axes.inset_axes用法及代码示例
- Python matplotlib Axes.axis用法及代码示例
- Python matplotlib AutoDateFormatter用法及代码示例
- Python matplotlib Axes.barbs用法及代码示例
- Python matplotlib AnchoredDrawingArea用法及代码示例
- Python matplotlib Axes.tripcolor用法及代码示例
- Python matplotlib AsteriskPolygonCollection用法及代码示例
- Python matplotlib AxisArtist.toggle用法及代码示例
- Python matplotlib Axis.get_tick_params用法及代码示例
- Python matplotlib Axes.set_prop_cycle用法及代码示例
- Python matplotlib ArrowStyle用法及代码示例
- Python matplotlib Axes.axline用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.transforms.Affine2DBase。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。