Coverage for python/lsst/afw/geom/ellipses/_ellipse.py: 77%
Shortcuts 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
Shortcuts 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
1__all__ = [] # import this module only for its side effects
3from lsst.utils import continueClass
4from ._ellipses import Ellipse
7@continueClass
8class Ellipse: # noqa: F811
9 def __repr__(self):
10 return f"Ellipse({self.getCore()!r}, {self.getCenter()!r})"
12 def __reduce__(self):
13 return (Ellipse, (self.getCore(), self.getCenter()))
15 def __str__(self):
16 return f"({self.getCore()}, {self.getCenter()})"