本文简要介绍 python 语言中 matplotlib.patheffects.withTickedStroke
的用法。
-
基础:
TickedStroke
用于应用
TickedStroke
然后绘制原始艺术家的快捷方式PathEffect。有了这个类,你可以使用
artist.set_path_effects([patheffects.withTickedStroke()])
作为快捷方式
artist.set_path_effects([patheffects.TickedStroke(), patheffects.Normal()])
- 参数:
- offset (float, float),默认值:(0, 0)
-
应用于路径的 (x, y) 偏移量,以点为单位。
- spacing 浮点数,默认值:10.0
-
刻度之间的间距(以点为单位)。
- angle 浮点数,默认值:45.0
-
路径与刻度之间的角度(以度为单位)。该角度的测量方式就像您是一只沿着曲线行走的蚂蚁一样,0 度指向正前方,90 度指向您的左侧,-90 度指向您的右侧,180 度指向您的后方。要更改刻度线的一侧,请更改角度的符号。
- length 浮点数,默认值:1.414
-
刻度相对于间距的长度。推荐长度 = 1.414 (sqrt(2)),当角度=45,长度=1.0,当角度=90,长度=2.0,当角度=60。
- **kwargs
-
额外的关键字被存储并传递给
AbstractPathEffect._update_gc()
。
例子
请参阅TickedStroke 路径效果。
用法
class matplotlib.patheffects.withTickedStroke(offset=(0, 0), spacing=10.0, angle=45.0, length=1.4142135623730951, **kwargs)
相关用法
- Python matplotlib withSimplePatchShadow用法及代码示例
- Python matplotlib withStroke用法及代码示例
- Python matplotlib warn_deprecated用法及代码示例
- Python matplotlib axvspan用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib AbstractMovieWriter用法及代码示例
- Python matplotlib triplot用法及代码示例
- Python matplotlib StarPolygonCollection.set_hatch用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib boxplot用法及代码示例
- Python matplotlib subplots用法及代码示例
- Python matplotlib InsetPosition用法及代码示例
- Python matplotlib ToolManager.toolmanager_disconnect用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib figlegend用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib LassoSelector用法及代码示例
- Python matplotlib BrokenBarHCollection.set_hatch用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib MovieWriterRegistry.register用法及代码示例
- Python matplotlib PolyQuadMesh.set_hatch用法及代码示例
- Python matplotlib Text.set_bbox用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.patheffects.withTickedStroke。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。