凸包¶
限定名称: manim.mobject.geometry.polygram.ConvexHull
- class ConvexHull(*points, tolerance=1e-05, **kwargs)[source]¶
基类:
Polygram
为一组无序点构建凸包。
- 参数:
points (Point3DLike) – 要考虑的点。
tolerance (float) – quickhull使用的容差。
kwargs (Any) – 转发给父类构造函数。
示例
示例: ConvexHullExample ¶
from manim import * class ConvexHullExample(Scene): def construct(self): points = [ [-2.35, -2.25, 0], [1.65, -2.25, 0], [2.65, -0.25, 0], [1.65, 1.75, 0], [-0.35, 2.75, 0], [-2.35, 0.75, 0], [-0.35, -1.25, 0], [0.65, -0.25, 0], [-1.35, 0.25, 0], [0.15, 0.75, 0] ] hull = ConvexHull(*points, color=BLUE) dots = VGroup(*[Dot(point) for point in points]) self.add(hull) self.add(dots)
class ConvexHullExample(Scene): def construct(self): points = [ [-2.35, -2.25, 0], [1.65, -2.25, 0], [2.65, -0.25, 0], [1.65, 1.75, 0], [-0.35, 2.75, 0], [-2.35, 0.75, 0], [-0.35, -1.25, 0], [0.65, -0.25, 0], [-1.35, 0.25, 0], [0.15, 0.75, 0] ] hull = ConvexHull(*points, color=BLUE) dots = VGroup(*[Dot(point) for point in points]) self.add(hull) self.add(dots)
方法
属性
animate (动画)
用于动画化
self
的任何方法的应用。animation_overrides (动画覆盖)
颜色
depth (深度)
mobject 的深度。
fill_color (填充颜色)
如果存在多种颜色(用于渐变),则返回第一种颜色
height (高度)
mobject 的高度。
n_points_per_curve (每条曲线的点数)
sheen_factor (光泽因子)
stroke_color (描边颜色)
width (宽度)
mobject 的宽度。
- _original__init__(*points, tolerance=1e-05, **kwargs)¶
初始化自身。有关准确签名,请参阅 help(type(self))。
- 参数:
points (Point3DLike)
tolerance (float)
kwargs (Any)
- 返回类型:
无