Skip to content

Commit 689ed0d

Browse files
authored
Merge pull request #160 from pyfar/update/sh_classes_structure_and_docs
Move SH class to sphary.classes
2 parents d35799b + 889380c commit 689ed0d

File tree

5 files changed

+405
-396
lines changed

5 files changed

+405
-396
lines changed

spharpy/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
__email__ = 'info@pyfar.org'
77
__version__ = '0.6.2'
88

9+
from .classes.sh import SphericalHarmonics
910
from .classes.coordinates import SamplingSphere
1011
from .classes.audio import SphericalHarmonicSignal
1112
from . import spherical
@@ -19,6 +20,7 @@
1920

2021

2122
__all__ = [
23+
'SphericalHarmonics',
2224
'SphericalHarmonicSignal',
2325
'spherical',
2426
'samplings',

spharpy/classes/__init__.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
from .sh import (
2+
SphericalHarmonics
3+
)
4+
15
from .audio import (
26
SphericalHarmonicSignal,
37
)
@@ -7,6 +11,7 @@
711
)
812

913
__all__ = [
14+
'SphericalHarmonics'
1015
'SphericalHarmonicSignal',
1116
'SamplingSphere',
1217
]

0 commit comments

Comments
 (0)