icosphere
icosphere(n=0)
Returns an icosahedral sphere with a given subdivision level.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
n |
int, optional (default 0)
|
the subdivision level |
0
|
Returns:
Name | Type | Description |
---|---|---|
V |
(n,3) numpy array
|
vertex positions of the icosphere |
F |
(m,3) numpy array
|
face positions of the icosphere |
Examples:
>>> import gpytoolbox as gpy
>>> V,F = gpy.icosphere()
>>> V
array([[ 4.62592927e-18, -8.32667268e-17, 1.00000000e+00],
[ 7.23606798e-01, -5.25731112e-01, 4.47213595e-01],
[ 7.23606798e-01, 5.25731112e-01, 4.47213595e-01],
[-2.76393202e-01, 8.50650808e-01, 4.47213595e-01],
[-8.94427191e-01, -8.32667268e-17, 4.47213595e-01],
[-2.76393202e-01, -8.50650808e-01, 4.47213595e-01],
[ 8.94427191e-01, -8.32667268e-17, -4.47213595e-01],
[ 2.76393202e-01, 8.50650808e-01, -4.47213595e-01],
[-7.23606798e-01, 5.25731112e-01, -4.47213595e-01],
[-7.23606798e-01, -5.25731112e-01, -4.47213595e-01],
[ 2.76393202e-01, -8.50650808e-01, -4.47213595e-01],
[ 4.62592927e-18, -8.32667268e-17, -1.00000000e+00]])
>>> F
array([[ 0, 1, 2],
[ 0, 2, 3],
[ 0, 3, 4],
[ 0, 4, 5],
[ 0, 5, 1],
[ 1, 6, 2],
[ 2, 7, 3],
[ 3, 8, 4],
[ 4, 9, 5],
[ 5, 10, 1],
[ 6, 7, 2],
[ 7, 8, 3],
[ 8, 9, 4],
[ 9, 10, 5],
[10, 6, 1],
[ 6, 11, 7],
[ 7, 11, 8],
[ 8, 11, 9],
[ 9, 11, 10],
[10, 11, 6]])
Source code in src/gpytoolbox/icosphere.py
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
|