Skip to content

Commit b6aca4d

Browse files
back to mass by default
1 parent c30a543 commit b6aca4d

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

index.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ canvas{
134134
/*color: #e63946;*/
135135
max-width: 700px;
136136
word-break: break-all;
137+
margin-right: 12px;
137138
}
138139
#observations{
139140
font-family: monospace;

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
<input id="perturbation-id-max" class="perturbation-id-minmax" type="text" disabled></input>
124124
⬆️
125125
<span style="margin-left: 5px;">Transform:</span>
126-
<input id="perturbation-transform" type="text" value="(id, o, p, x) => 1" title="id = id of the quadrotor, o = original value, p = percentage of the slider, x: resulting value {slider x range}"></input>
126+
<input id="perturbation-transform" type="text" value="(id, o, p, x) => o/2 + p*o/20 * id" title="id = id of the quadrotor, o = original value, p = percentage of the slider, x: resulting value {slider x range}"></input>
127127
</div>
128128
</span>
129129
</div>

parameter_manager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ export class ParameterManager{
218218
})
219219

220220
l2f.initialized.then(() => {
221-
perturbation_id_input.value = "parameters.mdp.init.guidance"
221+
perturbation_id_input.value = "parameters.dynamics.mass"
222222
perturbation_id_input.dispatchEvent(new Event("input"))
223223
const event = new Event('keydown')
224224
event.key = "Enter"

0 commit comments

Comments
 (0)