Move files
This commit is contained in:
parent
97ee3c77a5
commit
f9540abdef
70 changed files with 134 additions and 119 deletions
29
src/data/projects/nuclear-editor.ts
Normal file
29
src/data/projects/nuclear-editor.ts
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
import processSimulatorInputJpeg from '../media/process-simulator-input.jpg?format=jpg';
|
||||
import processSimulatorInputWebP from '../media/process-simulator-input.jpg?format=webp';
|
||||
|
||||
import { Image } from '../../page/basics/image/image';
|
||||
import { TimelineElementParameters } from '../../page/timeline/timeline-element/timeline-element';
|
||||
|
||||
export const nuclearEditorTimelineElement: TimelineElementParameters = {
|
||||
title: `Graph editing application`,
|
||||
date: `2018 October - November`,
|
||||
figure: new Image(
|
||||
processSimulatorInputWebP,
|
||||
processSimulatorInputJpeg,
|
||||
`a picture of the simulator's UI`
|
||||
),
|
||||
description: `
|
||||
An intuitive editor to create and edit input for the nuclear facility simulator.
|
||||
`,
|
||||
more: [
|
||||
`
|
||||
Nodes can be moved with drag & drop gestures.
|
||||
Editing the parameters of elements can be done on the right panel.
|
||||
`,
|
||||
`
|
||||
The UI is built with JavaFX. The output can be exported as JSON or
|
||||
directly uploaded to the simulation backend.
|
||||
`,
|
||||
],
|
||||
links: [],
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue