Initial configuration commit
This commit is contained in:
commit
31c8abea59
266 changed files with 780274 additions and 0 deletions
33
typings/matplotlib/projections/__init__.pyi
Normal file
33
typings/matplotlib/projections/__init__.pyi
Normal file
|
@ -0,0 +1,33 @@
|
|||
"""
|
||||
This type stub file was generated by pyright.
|
||||
"""
|
||||
|
||||
from .geo import AitoffAxes, HammerAxes, LambertAxes, MollweideAxes
|
||||
from .polar import PolarAxes
|
||||
from ..axes import Axes
|
||||
|
||||
class ProjectionRegistry:
|
||||
def __init__(self) -> None:
|
||||
...
|
||||
|
||||
def register(self, *projections: type[Axes]) -> None:
|
||||
...
|
||||
|
||||
def get_projection_class(self, name: str) -> type[Axes]:
|
||||
...
|
||||
|
||||
def get_projection_names(self) -> list[str]:
|
||||
...
|
||||
|
||||
|
||||
|
||||
projection_registry: ProjectionRegistry
|
||||
def register_projection(cls: type[Axes]) -> None:
|
||||
...
|
||||
|
||||
def get_projection_class(projection: str | None = ...) -> type[Axes]:
|
||||
...
|
||||
|
||||
def get_projection_names() -> list[str]:
|
||||
...
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue