@@ -101,89 +101,89 @@ public DesiredControl(double x, double y, double z, double k, double m, double n
101101 }
102102
103103 /**
104- * @return Force along the x axis (n ) - fp64_t
104+ * @return Force along the x axis (N ) - fp64_t
105105 */
106106 public double getX () {
107107 return getDouble ("x" );
108108 }
109109
110110 /**
111- * @param x Force along the x axis (n )
111+ * @param x Force along the x axis (N )
112112 */
113113 public DesiredControl setX (double x ) {
114114 values .put ("x" , x );
115115 return this ;
116116 }
117117
118118 /**
119- * @return Force along the y axis (n ) - fp64_t
119+ * @return Force along the y axis (N ) - fp64_t
120120 */
121121 public double getY () {
122122 return getDouble ("y" );
123123 }
124124
125125 /**
126- * @param y Force along the y axis (n )
126+ * @param y Force along the y axis (N )
127127 */
128128 public DesiredControl setY (double y ) {
129129 values .put ("y" , y );
130130 return this ;
131131 }
132132
133133 /**
134- * @return Force along the z axis (n ) - fp64_t
134+ * @return Force along the z axis (N ) - fp64_t
135135 */
136136 public double getZ () {
137137 return getDouble ("z" );
138138 }
139139
140140 /**
141- * @param z Force along the z axis (n )
141+ * @param z Force along the z axis (N )
142142 */
143143 public DesiredControl setZ (double z ) {
144144 values .put ("z" , z );
145145 return this ;
146146 }
147147
148148 /**
149- * @return Torque about the x axis (nm ) - fp64_t
149+ * @return Torque about the x axis (Nm ) - fp64_t
150150 */
151151 public double getK () {
152152 return getDouble ("k" );
153153 }
154154
155155 /**
156- * @param k Torque about the x axis (nm )
156+ * @param k Torque about the x axis (Nm )
157157 */
158158 public DesiredControl setK (double k ) {
159159 values .put ("k" , k );
160160 return this ;
161161 }
162162
163163 /**
164- * @return Torque about the y axis (nm ) - fp64_t
164+ * @return Torque about the y axis (Nm ) - fp64_t
165165 */
166166 public double getM () {
167167 return getDouble ("m" );
168168 }
169169
170170 /**
171- * @param m Torque about the y axis (nm )
171+ * @param m Torque about the y axis (Nm )
172172 */
173173 public DesiredControl setM (double m ) {
174174 values .put ("m" , m );
175175 return this ;
176176 }
177177
178178 /**
179- * @return Torque about the z axis (nm ) - fp64_t
179+ * @return Torque about the z axis (Nm ) - fp64_t
180180 */
181181 public double getN () {
182182 return getDouble ("n" );
183183 }
184184
185185 /**
186- * @param n Torque about the z axis (nm )
186+ * @param n Torque about the z axis (Nm )
187187 */
188188 public DesiredControl setN (double n ) {
189189 values .put ("n" , n );
0 commit comments