forked from StudioInfinity/dyna3
Compare commits
2 commits
6eeeb1c6fd
...
08ec838334
Author | SHA1 | Date | |
---|---|---|---|
![]() |
08ec838334 | ||
![]() |
b9db7a5699 |
3 changed files with 3 additions and 10 deletions
|
@ -4,10 +4,7 @@ use web_sys::{console, wasm_bindgen::JsValue};
|
||||||
use crate::{
|
use crate::{
|
||||||
engine,
|
engine,
|
||||||
AppState,
|
AppState,
|
||||||
assembly::{
|
assembly::{Assembly, Element}
|
||||||
Assembly,
|
|
||||||
Element
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* DEBUG */
|
/* DEBUG */
|
||||||
|
|
|
@ -9,11 +9,7 @@ use web_sys::{
|
||||||
use crate::{
|
use crate::{
|
||||||
AppState,
|
AppState,
|
||||||
assembly,
|
assembly,
|
||||||
assembly::{
|
assembly::{ElementKey, Regulator, RegulatorKey},
|
||||||
ElementKey,
|
|
||||||
Regulator,
|
|
||||||
RegulatorKey
|
|
||||||
},
|
|
||||||
specified::SpecifiedValue
|
specified::SpecifiedValue
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ impl TryFrom<String> for SpecifiedValue {
|
||||||
|
|
||||||
fn try_from(spec: String) -> Result<Self, Self::Error> {
|
fn try_from(spec: String) -> Result<Self, Self::Error> {
|
||||||
if spec.is_empty() {
|
if spec.is_empty() {
|
||||||
Ok(SpecifiedValue { spec: spec, value: None })
|
Ok(SpecifiedValue::from_empty_spec())
|
||||||
} else {
|
} else {
|
||||||
spec.parse::<f64>().map(
|
spec.parse::<f64>().map(
|
||||||
|value| SpecifiedValue { spec: spec, value: Some(value) }
|
|value| SpecifiedValue { spec: spec, value: Some(value) }
|
||||||
|
|
Loading…
Add table
Reference in a new issue