2021-01-26 21:05:56 +03:00
|
|
|
//import hep.dataforge.vision.plotly.withPlotly
|
2021-01-12 12:52:22 +03:00
|
|
|
import hep.dataforge.vision.plotly.withPlotly
|
2021-02-24 13:42:55 +03:00
|
|
|
import hep.dataforge.vision.renderVisionsAt
|
2021-01-12 12:52:22 +03:00
|
|
|
import hep.dataforge.vision.renderVisionsInWindow
|
2021-02-24 13:42:55 +03:00
|
|
|
import hep.dataforge.vision.solid.three.withThreeJs
|
|
|
|
import kotlinx.browser.window
|
2020-12-29 15:00:11 +03:00
|
|
|
|
|
|
|
fun main() {
|
2021-01-12 12:52:22 +03:00
|
|
|
withPlotly()
|
2021-02-24 13:42:55 +03:00
|
|
|
withThreeJs()
|
2021-01-12 12:52:22 +03:00
|
|
|
renderVisionsInWindow()
|
2021-02-24 13:42:55 +03:00
|
|
|
window.asDynamic()["renderVisionsInWindow"] = ::renderVisionsInWindow
|
|
|
|
window.asDynamic()["renderVisionsAt"] = ::renderVisionsAt
|
2020-12-29 15:00:11 +03:00
|
|
|
}
|