向量
合格名称:manim.mobject.geometry.line.Vector
Python | |
---|---|
Bases: Arrow
专门用于图形的向量。
参数
- Direction ( list | np.ndarray ) – 箭头的方向。
- buff ( float ) – 向量与其端点的距离。
- kwargs – 要传递给的附加参数
Arrow
例子
示例:向量示例
Python | |
---|---|
方法
coordinate_label |
根据向量的坐标创建标签。 |
属性
animate |
用于对 的任何方法的应用程序进行动画处理self 。 |
animation_overrides |
|
color |
|
depth |
对象的深度。 |
fill_color |
如果有多种颜色(对于渐变),则返回第一个颜色 |
height |
mobject 的高度。 |
n_points_per_curve |
|
sheen_factor |
|
stroke_color |
|
width |
mobject 的宽度。 |
coordinate_label(integer_labels=True, n_dim=2, color=None, **kwargs)
根据向量的坐标创建标签。
参数
- integer_labels ( bool ) – 是否将坐标舍入为整数。
- n_dim ( int ) – 向量的维数。
- color ( Color | None ) – 设置标签的颜色,可选。
- kwargs – 要传递给 的附加参数
Matrix
。
返回
标签。
返回类型
例子
示例:矢量坐标标签
Python | |
---|---|