Skip to content

Commit

Permalink
Fix documentation formatting (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLIrion committed Nov 10, 2023
1 parent 945a2e0 commit 1ac4d6c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions graphslam/pose/base_pose.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def jacobian_boxplus(self):
raise NotImplementedError

def jacobian_self_oplus_point_wrt_self(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where :math:`p_2` is a point.
Let
Expand Down Expand Up @@ -451,7 +451,7 @@ def jacobian_self_oplus_point_wrt_self(self, point):
raise NotImplementedError

def jacobian_self_oplus_point_wrt_point(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where :math:`p_2` is a point.
Let
Expand Down
4 changes: 2 additions & 2 deletions graphslam/pose/r2.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def jacobian_boxplus(self):
return np.eye(2)

def jacobian_self_oplus_point_wrt_self(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where :math:`p_2` is a point.
Parameters
----------
Expand All @@ -310,7 +310,7 @@ def jacobian_self_oplus_point_wrt_self(self, point):
return np.eye(2)

def jacobian_self_oplus_point_wrt_point(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where :math:`p_2` is a point.
Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions graphslam/pose/r3.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def jacobian_boxplus(self):
return np.eye(3)

def jacobian_self_oplus_point_wrt_self(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where :math:`p_2` is a point.
Parameters
----------
Expand All @@ -310,7 +310,7 @@ def jacobian_self_oplus_point_wrt_self(self, point):
return np.eye(3)

def jacobian_self_oplus_point_wrt_point(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where :math:`p_2` is a point.
Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions graphslam/pose/se2.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def jacobian_boxplus(self):
# fmt: on

def jacobian_self_oplus_point_wrt_self(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where :math:`p_2` is a point.
Parameters
----------
Expand All @@ -411,7 +411,7 @@ def jacobian_self_oplus_point_wrt_self(self, point):
# fmt: on

def jacobian_self_oplus_point_wrt_point(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where :math:`p_2` is a point.
Parameters
----------
Expand Down
4 changes: 2 additions & 2 deletions graphslam/pose/se3.py
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ def jacobian_boxplus(self):
# fmt: on

def jacobian_self_oplus_point_wrt_self(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_1`, where :math:`p_2` is a point.
Parameters
----------
Expand All @@ -472,7 +472,7 @@ def jacobian_self_oplus_point_wrt_self(self, point):
# fmt: on

def jacobian_self_oplus_point_wrt_point(self, point):
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where `:math:p_2` is a point.
r"""Compute the Jacobian of :math:`p_1 \oplus p_2` w.r.t. :math:`p_2`, where :math:`p_2` is a point.
Parameters
----------
Expand Down

0 comments on commit 1ac4d6c

Please sign in to comment.