Skip to content

3.1 RELEASE

Compare
Choose a tag to compare
@JustinSDK JustinSDK released this 13 Jul 07:51
· 1323 commits to master since this release

v3.1

Deprecated:

Name Description
bezier_surface use surface/sf_splines instead.
function_grapher use surface/sf_thicken instead.

New modules/functions:

Matrix

Signature Description
maxtrix/m_transpose(m) transpose a matrix.

Surface

Signature Description
surface/sf_curve(levels, curve_path, ...) curve a photo.
surface/sf_splines(ctrl_pts, row_spline, column_spline) generalized-spline surface.
surface/sf_thicken(points, thickness, ...) thicken a surface.
surface/sf_solidifyT(points1, points2, triangles) solidify two surfaces with triangular mesh.
surface/sf_thickenT(points, thickness, ...) thicken a surface with triangular mesh.

Triangle

Signature Description
triangle/tri_circumcenter(shape_pts) return the circumcenter of a triangle.
triangle/tri_incenter(shape_pts) return the incenter of a triangle.
triangle/tri_ear_clipping(shape_pts, ret = "TRI_INDICES", ...) triangulation by ear clipping.
triangle/tri_delaunay(points, ret = "TRI_INDICES") Join a set of points to make a Delaunay triangulation.
triangle/tri_delaunay_indices(d) return triangle indices from a delaunay object.
triangle/tri_delaunay_shapes(d) return triangle shapes from a delaunay object.
triangle/tri_delaunay_voronoi(d) return Voronoi cells from a delaunay object.