From 88e4315cf50313a33c2401d4edc452052bc07c38 Mon Sep 17 00:00:00 2001 From: Vishwa Shah Date: Thu, 24 Oct 2024 08:54:39 -0700 Subject: [PATCH] docs: fix documentation for State.in_frame (#452) --- .../OpenSpaceToolkitAstrodynamicsPy/Trajectory/State.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/python/src/OpenSpaceToolkitAstrodynamicsPy/Trajectory/State.cpp b/bindings/python/src/OpenSpaceToolkitAstrodynamicsPy/Trajectory/State.cpp index 99c4adc91..0d8570a7d 100644 --- a/bindings/python/src/OpenSpaceToolkitAstrodynamicsPy/Trajectory/State.cpp +++ b/bindings/python/src/OpenSpaceToolkitAstrodynamicsPy/Trajectory/State.cpp @@ -266,13 +266,13 @@ inline void OpenSpaceToolkitAstrodynamicsPy_Trajectory_State(pybind11::module& a "in_frame", &State::inFrame, R"doc( - Check if the state is in a given reference frame. + Transform the state to the provided reference frame. Args: - frame (Frame): The reference frame to check. + frame (Frame): The reference frame to transform to. Returns: - bool: True if the state is in the reference frame, False otherwise. + State: The transformed state. )doc", arg("frame") )