Skip to content

Commit 1870e80

Browse files
committed
add a nonsingular configuration, qb for "bent"
1 parent 66e617d commit 1870e80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roboticstoolbox/models/ETS/Planar2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ def __init__(self):
3535

3636
super().__init__([l0, l1, l2], name="Planar2", comment="Planar 2D manipulator")
3737

38-
self.qr = np.array([0, 0])
38+
self.qb = np.array([0, np.pi/2])
3939
self.qz = np.zeros(2)
4040

41-
self.addconfiguration("qr", self.qr)
4241
self.addconfiguration("qz", self.qz)
42+
self.addconfiguration("qb", self.qb)
4343

4444

4545
if __name__ == "__main__": # pragma nocover

0 commit comments

Comments
 (0)