mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-01-16 13:50:23 +01:00
Removed bad See Also's for gaussian_random_points().
This commit is contained in:
parent
c0ac2d7d51
commit
dba4e49eb9
@ -499,7 +499,7 @@ function rand_int(minval, maxval, N, seed=undef) =
|
|||||||
// Function: random_points()
|
// Function: random_points()
|
||||||
// Usage:
|
// Usage:
|
||||||
// points = random_points([N], [dim], [scale], [seed]);
|
// points = random_points([N], [dim], [scale], [seed]);
|
||||||
// See Also: random_polygon(), gaussian_random_points(), spherical_random_points()
|
// See Also: random_polygon(), spherical_random_points()
|
||||||
// Topics: Random, Points
|
// Topics: Random, Points
|
||||||
// Description:
|
// Description:
|
||||||
// Generate `N` uniform random points of dimension `dim` with data ranging from -scale to +scale.
|
// Generate `N` uniform random points of dimension `dim` with data ranging from -scale to +scale.
|
||||||
@ -556,7 +556,7 @@ function gaussian_rands(N=1, mean=0, cov=1, seed=undef) =
|
|||||||
// Function: spherical_random_points()
|
// Function: spherical_random_points()
|
||||||
// Usage:
|
// Usage:
|
||||||
// points = spherical_random_points([N], [radius], [seed]);
|
// points = spherical_random_points([N], [radius], [seed]);
|
||||||
// See Also: random_polygon(), random_points(), gaussian_random_points()
|
// See Also: random_polygon(), random_points()
|
||||||
// Topics: Random, Points
|
// Topics: Random, Points
|
||||||
// Description:
|
// Description:
|
||||||
// Generate `n` 3D uniformly distributed random points lying on a sphere centered at the origin with radius equal to `radius`.
|
// Generate `n` 3D uniformly distributed random points lying on a sphere centered at the origin with radius equal to `radius`.
|
||||||
@ -583,7 +583,7 @@ function spherical_random_points(N=1, radius=1, seed) =
|
|||||||
// Function: random_polygon()
|
// Function: random_polygon()
|
||||||
// Usage:
|
// Usage:
|
||||||
// points = random_polygon(n, size, [seed]);
|
// points = random_polygon(n, size, [seed]);
|
||||||
// See Also: random_points(), gaussian_random_points(), spherical_random_points()
|
// See Also: random_points(), spherical_random_points()
|
||||||
// Topics: Random, Polygon
|
// Topics: Random, Polygon
|
||||||
// Description:
|
// Description:
|
||||||
// Generate the `n` vertices of a random counter-clockwise simple 2d polygon
|
// Generate the `n` vertices of a random counter-clockwise simple 2d polygon
|
||||||
|
Loading…
x
Reference in New Issue
Block a user