We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d35799b + 889380c commit 689ed0dCopy full SHA for 689ed0d
spharpy/__init__.py
@@ -6,6 +6,7 @@
6
__email__ = 'info@pyfar.org'
7
__version__ = '0.6.2'
8
9
+from .classes.sh import SphericalHarmonics
10
from .classes.coordinates import SamplingSphere
11
from .classes.audio import SphericalHarmonicSignal
12
from . import spherical
@@ -19,6 +20,7 @@
19
20
21
22
__all__ = [
23
+ 'SphericalHarmonics',
24
'SphericalHarmonicSignal',
25
'spherical',
26
'samplings',
spharpy/classes/__init__.py
@@ -1,3 +1,7 @@
1
+from .sh import (
2
+ SphericalHarmonics
3
+)
4
+
5
from .audio import (
SphericalHarmonicSignal,
)
@@ -7,6 +11,7 @@
13
14
+ 'SphericalHarmonics'
15
16
'SamplingSphere',
17
]
0 commit comments