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

9 lines
226 B
Kotlin
Raw Normal View History

2021-01-12 12:52:22 +03:00
import hep.dataforge.vision.plotly.withPlotly
import hep.dataforge.vision.renderVisionsInWindow
import hep.dataforge.vision.solid.three.loadThreeJs
2020-12-29 15:00:11 +03:00
fun main() {
2021-01-12 12:52:22 +03:00
withPlotly()
loadThreeJs()
renderVisionsInWindow()
2020-12-29 15:00:11 +03:00
}