1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-04-13 02:31:58 +02:00

updated docs

This commit is contained in:
Justin Lin 2017-04-08 09:07:28 +08:00
parent 1e20f0235d
commit 915cd36f7f
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# bezier_curve
Given a set of control points, the bezier_curve function returns points of the Bézier path. Combined with the `polyline`, `polyline3d` or `hull_polyline3d` module defined in my lib-openscad, you can create a Bézier curve.
Given a set of control points, the bezier_curve function returns points of the Bézier path. Combined with the `polyline`, `polyline3d` or `hull_polyline3d` module defined in my library, you can create a Bézier curve.
## Parameters

View File

@ -1,6 +1,6 @@
# bezier_surface
Given a set of control points, the `bezier_surface` function returns points of the Bézier surface. Combined with the `function_grapher` module defined in my lib-openscad, you can create a Bézier surface.
Given a set of control points, the `bezier_surface` function returns points of the Bézier surface. Combined with the `function_grapher` module defined in my library, you can create a Bézier surface.
It depends on the `bezier_curve` function so remember to include bezier_curve.scad.