1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-12 17:54:18 +02:00

add since

This commit is contained in:
Justin Lin
2020-12-20 10:25:48 +08:00
parent c2251eb3dd
commit afaf67c739
5 changed files with 10 additions and 0 deletions

View File

@@ -4,6 +4,8 @@ Creates visually even spacing of n points on the surface of the sphere. Successi
(It's called "visually even spacing" because only the vertices of the 5 [Platonic solids](https://en.wikipedia.org/wiki/Platonic_solid) can be said to be truly evenly spaced around the surface of a sphere.)
**Since:** 2.5
## Parameters
- `n` : The number of points.

View File

@@ -4,6 +4,8 @@ Creates visually even spacing of n points on the surface of the sphere. Nearest-
(It's called "visually even spacing" because only the vertices of the 5 [Platonic solids](https://en.wikipedia.org/wiki/Platonic_solid) can be said to be truly evenly spaced around the surface of a sphere.)
**Since:** 2.5
## Parameters
- `n` : The number of points.

View File

@@ -2,6 +2,8 @@
Given 4 control points, returns voxel-by-voxel points of Bézier Curve .
**Since:** 2.5
## Parameters
- `p1` : The 1st control point.

View File

@@ -2,6 +2,8 @@
Given a list of points that form a closed area, `vx_contour` returns the contour which encircles the area.
**Since:** 2.5
## Parameters
- `points` : A list of `[x, y]` points.

View File

@@ -2,6 +2,8 @@
Draws a voxel-by-voxel curve from control points. The curve is drawn only from the 2nd control point to the second-last control point. It's a voxel version of [curve](https://openhome.cc/eGossip/OpenSCAD/lib2x-curve.html).
**Since:** 2.5
## Parameters
- `points` : A list of `[x, y]` or `[x, y, z]` control points.