在 Mathematica 中使用“BezierFunction”很容易生成曲面形式的三次 Bézier 补丁(作为 3D 点列表)
例子:
pts = {{{0, 0, 0}, {0, 1, 0}, {0, 2, 0}, {0, 3, 0}}, {{1, 0, 0}, {1,
1, 1}, {1, 2, 1}, {1, 3, 0}},
{{2, 0, 0}, {2, 1, 1}, {2, 2, 1}, {2, 3, 0}},
{{3, 0, 0}, {3, 1, 0}, {3, 2, 0}, {3, 3, 0}}};
f = BezierFunction[pts]
Show[Graphics3D[{PointSize[Medium], Red, Map[Point, pts]}],
Graphics3D[{Gray, Line[pts], Line[Transpose[pts]]}],
ParametricPlot3D[f[u, v], {u, 0, 1}, {v, 0, 1}, Mesh -> None]]
但是现在我有一个相反的问题,如果我们有一个 3D 表面,我们如何才能得到一个基于它的三次 Bézier 补丁(根据一些规则)?