mirror of
https://github.com/BelfrySCAD/BOSL2.git
synced 2024-12-29 16:29:40 +00:00
Fixed See Also links in geometry.scad
This commit is contained in:
parent
59af31a531
commit
e89d303c52
1 changed files with 2 additions and 2 deletions
|
@ -494,7 +494,7 @@ function _covariance_evec_eval(points) =
|
|||
// Usage:
|
||||
// plane = plane_from_points(points, [fast], [eps]);
|
||||
// Topics: Geometry, Planes, Points
|
||||
// See Also: plane_from_polygon
|
||||
// See Also: plane_from_polygon()
|
||||
// Description:
|
||||
// Given a list of 3 or more coplanar 3D points, returns the coefficients of the normalized cartesian equation of a plane,
|
||||
// that is [A,B,C,D] where Ax+By+Cz=D is the equation of the plane and norm([A,B,C])=1.
|
||||
|
@ -531,7 +531,7 @@ function plane_from_points(points, fast=false, eps=EPSILON) =
|
|||
// Usage:
|
||||
// plane = plane_from_polygon(points, [fast], [eps]);
|
||||
// Topics: Geometry, Planes, Polygons
|
||||
// See Also: plane_from_points
|
||||
// See Also: plane_from_points()
|
||||
// Description:
|
||||
// Given a 3D planar polygon, returns the normalized cartesian equation of its plane.
|
||||
// Returns [A,B,C,D] where Ax+By+Cz=D is the equation of the plane where norm([A,B,C])=1.
|
||||
|
|
Loading…
Reference in a new issue