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

10 lines
317 B
Kotlin
Raw Normal View History

2021-03-07 16:19:43 +03:00
import space.kscience.dataforge.misc.DFExperimental
2021-05-05 15:28:06 +03:00
import space.kscience.visionforge.plotly.PlotlyPlugin
2021-05-10 22:07:16 +03:00
import space.kscience.visionforge.ring.ThreeWithControls
2021-05-05 15:28:06 +03:00
import space.kscience.visionforge.runVisionClient
2020-12-29 15:00:11 +03:00
2021-03-01 21:33:25 +03:00
@DFExperimental
2021-05-05 15:28:06 +03:00
fun main() = runVisionClient {
plugin(PlotlyPlugin)
2021-05-10 22:07:16 +03:00
plugin(ThreeWithControls)
2020-12-29 15:00:11 +03:00
}