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

10 lines
312 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
import space.kscience.visionforge.runVisionClient
import space.kscience.visionforge.solid.three.ThreePlugin
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)
plugin(ThreePlugin)
2020-12-29 15:00:11 +03:00
}