Skip to content

Commit

Permalink
fix: fix Python types
Browse files Browse the repository at this point in the history
  • Loading branch information
helgee committed Dec 19, 2024
1 parent 5a75d2a commit 47e27e4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions crates/lox-space/lox_space.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,19 @@ class Origin:
def __new__(cls, origin: str | int): ...
def id(self) -> int: ...
def name(self) -> str: ...
def gravitational_parameter(self) -> float: ...
def mean_radius(self) -> float: ...
def radii(self) -> tuple[float, float, float]: ...
def equatorial_radius(self) -> float: ...
def polar_radius(self) -> float: ...
def rotational_elements(self, et: float) -> tuple[float, float, float]: ...
def rotational_element_rates(self, et: float) -> tuple[float, float, float]: ...
def right_ascension(self, et: float) -> float: ...
def right_ascension_rate(self, et: float) -> float: ...
def declination(self, et: float) -> float: ...
def declination_rate(self, et: float) -> float: ...
def rotation_angle(self, et: float) -> float: ...
def rotation_rate(self, et: float) -> float: ...

class Frame:
def __new__(cls, abbreviation: str): ...
Expand Down

0 comments on commit 47e27e4

Please sign in to comment.