20 lines
886 B
TypeScript
20 lines
886 B
TypeScript
import { BorderedImage } from '../../page/figure/bordered-image/bordered-image';
|
|
import { TimelineElementParameters } from '../../page/timeline-element/timeline-element-parameters';
|
|
import nuclearEditorPoster from '../media/process-simulator-input.jpg';
|
|
|
|
export const nuclearEditor: TimelineElementParameters = {
|
|
title: 'Graph editor — JavaFX',
|
|
date: 'October - November 2018',
|
|
figure: new BorderedImage({
|
|
image: nuclearEditorPoster,
|
|
alt: "a picture of the simulator's UI",
|
|
}),
|
|
description:
|
|
'An intuitive editor to create and edit input for the nuclear facility simulator (see above).',
|
|
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: [],
|
|
};
|