Update the realization when a constraint is activated
Sycamore probably has a better way to do this, but this way works for now.
This commit is contained in:
parent
a37c71153d
commit
e5f4d523f9
@ -214,10 +214,11 @@ pub fn AddRemove() -> View {
|
||||
(arg_vec[0].clone(), arg_vec[1].clone())
|
||||
}
|
||||
);
|
||||
let active = create_signal(true);
|
||||
state.assembly.insert_constraint(Constraint {
|
||||
args: args,
|
||||
rep: 0.0,
|
||||
active: create_signal(true)
|
||||
active: active
|
||||
});
|
||||
state.assembly.realize();
|
||||
state.selection.update(|sel| sel.clear());
|
||||
@ -236,6 +237,13 @@ pub fn AddRemove() -> View {
|
||||
);
|
||||
}
|
||||
});
|
||||
|
||||
// make constraint activation trigger a realization update
|
||||
create_effect(move || {
|
||||
if active.get() {
|
||||
state.assembly.realize();
|
||||
}
|
||||
});
|
||||
}
|
||||
) { "🔗" }
|
||||
select(bind:value=assembly_name) { /* DEBUG */
|
||||
|
@ -97,7 +97,7 @@ impl Assembly {
|
||||
self.elements.update(|elts| {
|
||||
elts[args.0].constraints.insert(key);
|
||||
elts[args.1].constraints.insert(key);
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
// --- realization ---
|
||||
@ -116,11 +116,13 @@ impl Assembly {
|
||||
let mut gram_to_be = PartialMatrix::new();
|
||||
self.constraints.with_untracked(|csts| {
|
||||
for (_, cst) in csts {
|
||||
if cst.active.get_untracked() {
|
||||
let args = cst.args;
|
||||
let row = elts[args.0].index;
|
||||
let col = elts[args.1].index;
|
||||
gram_to_be.push_sym(row, col, cst.rep);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
// set up the initial configuration matrix and the diagonal of the
|
||||
|
Loading…
Reference in New Issue
Block a user