We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b133eb commit 5506dcaCopy full SHA for 5506dca
roboticstoolbox/robot/ET.py
@@ -107,7 +107,10 @@ def __init_c(self):
107
jindex = self.jindex
108
109
if self.qlim is None:
110
- qlim = array([0, 0])
+ if self.axis[0] == "R":
111
+ qlim = array([-pi, pi])
112
+ else:
113
+ qlim = array([0, 1])
114
else:
115
qlim = self.qlim
116
@@ -131,7 +134,10 @@ def __update_c(self):
131
134
132
135
133
136
137
138
139
140
141
142
143
0 commit comments