blob: d1574ead3186d9a9fa6439ab1490f3a5c6aed4aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import numpy as np
def uniform_sphere(size=None):
"""
Generate random points isotropically distributed across the unit sphere.
Args:
- size: int, *optional*
Number of points to generate. If no size is specified, a single
point is returned.
source: Weisstein, Eric W. "Sphere Point Picking." Mathworld.
"""
theta, u = np.random.uniform(0.0, 2*np.pi, size), \
np.random.uniform(-1.0, 1.0, size)
c = np.sqrt(1-u**2)
points = np.empty((x.size, 3))
points[:,0] = c*np.cos(theta)
points[:,1] = c*np.sin(theta)
points[:,2] = u
if size is None:
return points[0]
else:
return points
|