Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1from .shapeletFunction import ShapeletFunction 

2 

3from lsst.utils import continueClass 

4 

5__all__ = [] 

6 

7 

8@continueClass # noqa 

9class ShapeletFunction: 

10 def __reduce__(self): 

11 return (ShapeletFunction, (self.getOrder(), self.getBasisType(), 

12 self.getEllipse(), self.getCoefficients()))