Basic readme

This commit is contained in:
Alexander Nozik 2019-07-10 11:49:21 +03:00
parent 4fc7b91bec
commit 3f47167c9d
2 changed files with 13 additions and 1 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# DataForge plugins for visualisation
## Common visualisation objects
## JavaFX utilities for meta manipulations
## 3D visualisation
Includes common discription and serializers, JavaFX and Three.js implementations.
## GDML bindings for 3D visualisation (to be moved to gdml project)

View File

@ -21,8 +21,9 @@ interface VisualObject : MetaRepr {
val properties: Styled val properties: Styled
override fun toMeta(): Meta = buildMeta(properties) { override fun toMeta(): Meta = buildMeta {
"type" to this::class "type" to this::class
"properties" to properties
} }
companion object { companion object {