Skip to content

Commit 5b5ae32

Browse files
committed
escape Sphinx backslash
1 parent f5c34c7 commit 5b5ae32

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

spatialmath/pose3d.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,7 @@ def delta(self, X2):
971971
return base.tr2delta(self.A, X2.A)
972972

973973
def Ad(self):
974-
"""
974+
r"""
975975
Adjoint of SE(3)
976976
977977
:return: adjoint matrix
@@ -997,7 +997,7 @@ def Ad(self):
997997
return base.tr2adjoint(self.A)
998998

999999
def jacob(self):
1000-
"""
1000+
r"""
10011001
Velocity transform for SE(3)
10021002
10031003
:return: Jacobian matrix

spatialmath/quaternion.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1286,7 +1286,7 @@ def Eul(cls, *angles, unit='rad'):
12861286

12871287
@classmethod
12881288
def RPY(cls, *angles, order='zyx', unit='rad'):
1289-
"""
1289+
r"""
12901290
Construct a new unit quaternion from roll-pitch-yaw angles
12911291
12921292
:param 𝚪: 3-vector of roll-pitch-yaw angles

spatialmath/twist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def isrevolute(self):
138138

139139
@property
140140
def isunit(self):
141-
"""
141+
r"""
142142
Test for unit twist (superclass property)
143143
144144
:return: Whether twist is a unit-twist

0 commit comments

Comments
 (0)