visionforge/demo/playground/src/jsMain/kotlin/playgroundMain.kt

9 lines
235 B
Kotlin
Raw Normal View History

2021-02-26 13:03:40 +03:00
import hep.dataforge.vision.VisionForge
2021-02-24 22:48:17 +03:00
import hep.dataforge.vision.plotly.usePlotly
import hep.dataforge.vision.solid.three.useThreeJs
2020-12-29 15:00:11 +03:00
2021-02-26 13:03:40 +03:00
fun main(): Unit = VisionForge.run{
2021-02-24 22:48:17 +03:00
usePlotly()
useThreeJs()
2021-01-12 12:52:22 +03:00
renderVisionsInWindow()
2020-12-29 15:00:11 +03:00
}