aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx
diff options
context:
space:
mode:
authorbrynnchernosky <56202540+brynnchernosky@users.noreply.github.com>2023-05-03 16:04:02 -0400
committerbrynnchernosky <56202540+brynnchernosky@users.noreply.github.com>2023-05-03 16:04:02 -0400
commit2e3df73d84228b04b8d1f284b5e18f7e48fad759 (patch)
tree9628abbbe9e86cc0ce15f7b9c6fcac2145daa0cd /src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx
parent018077581b70483ac2f3453ba813b5f4adb61fd5 (diff)
debugging json import
Diffstat (limited to 'src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx')
-rw-r--r--src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx b/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx
index 315e64e79..056f79368 100644
--- a/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx
+++ b/src/client/views/nodes/PhysicsBox/PhysicsSimulationBox.tsx
@@ -33,8 +33,8 @@ import {
import Typography from "@mui/material/Typography";
import "./PhysicsSimulationBox.scss";
import InputField from "./PhysicsSimulationInputField";
-import questions from "./PhysicsSimulationQuestions.json";
-import tutorials from "./PhysicsSimulationTutorial.json";
+import * as questions from "./PhysicsSimulationQuestions.json";
+import * as tutorials from "./PhysicsSimulationTutorial.json";
import Wall from "./PhysicsSimulationWall";
import Weight from "./PhysicsSimulationWeight";
@@ -108,9 +108,9 @@ export default class PhysicsSimulationBox extends ViewBoxAnnotatableComponent<Fi
componentDidMount() {
// Used throughout sims
this.layoutDoc._width = 1000;
- this.layoutDoc._height = 1000;
- this.xMax = this.layoutDoc._width*0.7 ?? 700;
- this.yMax = this.layoutDoc._height*0.7 ?? 700;
+ this.layoutDoc._height = 800;
+ this.xMax = this.layoutDoc._width*0.7;
+ this.yMax = this.layoutDoc._height*0.9;
this.radius = 50;
this.dataDoc.reviewCoefficient = this.dataDoc.reviewCoefficient ?? 0;
this.dataDoc.questionVariables = this.dataDoc.questionVariables ?? [];
@@ -147,7 +147,7 @@ export default class PhysicsSimulationBox extends ViewBoxAnnotatableComponent<Fi
this.dataDoc.velocityYDisplay = this.dataDoc.velocityYDisplay ?? 0;
// Used for review mode
- // this.dataDoc.answerInputFields = this.dataDoc.answerInputFields ?? <div></div>;
+ this.dataDoc.answerInputFields = this.dataDoc.answerInputFields ?? <div></div>;
// this.dataDoc.currentForceSketch = this.dataDoc.currentForceSketch ?? null;
// this.dataDoc.deleteMode = this.dataDoc.deleteMode ?? false;
// this.dataDoc.forceSketches = this.dataDoc.forceSketches ?? [];
@@ -163,11 +163,11 @@ export default class PhysicsSimulationBox extends ViewBoxAnnotatableComponent<Fi
this.dataDoc.reviewStaticAngle = this.dataDoc.reviewStaticAngle ?? 0;
this.dataDoc.reviewStaticMagnitude = this.dataDoc.reviewStaticMagnitude ?? 0;
this.dataDoc.selectedSolutions = this.dataDoc.selectedSolutions ?? [];
- // this.dataDoc.selectedQuestion = this.dataDoc.selectedQuestion ?? questions.inclinePlane[0];
+ this.dataDoc.selectedQuestion = this.dataDoc.selectedQuestion ?? questions.inclinePlane[0];
// this.dataDoc.sketching = this.dataDoc.sketching ?? false;
- // // Used for tutorial mode
- // this.dataDoc.selectedTutorial = this.dataDoc.selectedTutorial ?? tutorials.inclinePlane;
+ // Used for tutorial mode
+ this.dataDoc.selectedTutorial = this.dataDoc.selectedTutorial ?? tutorials.inclinePlane;
// Used for uniform circular motion
this.dataDoc.circularMotionRadius = this.dataDoc.circularMotionRadius ?? 150;
@@ -217,8 +217,8 @@ export default class PhysicsSimulationBox extends ViewBoxAnnotatableComponent<Fi
}
componentDidUpdate() {
- this.xMax = this.layoutDoc._width*0.7 ?? 700;
- this.yMax = this.layoutDoc._height*0.7 ?? 700;
+ this.xMax = this.layoutDoc._width*0.7;
+ this.yMax = this.layoutDoc._height*0.9;
this.radius = 0.05*this.layoutDoc._height ?? 50;
}