Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kitware/vue-vtk-js

Vue.js based components for vtk.js
https://github.com/kitware/vue-vtk-js

Last synced: about 2 months ago
JSON representation

Vue.js based components for vtk.js

Awesome Lists containing this project

README

        

# vue-vtk-js

Vue.js based declarative vtk.js visualization pipeline.
In other words this project allow you to leverage vtk.js using Vue component syntax to describe your 3D scene. Kind of like X3dom with the X3D format except that here we leverage Vue components that could be extended to build your own tools.

## Usage

```js
import Vue from 'vue';
import App from './App.vue';
import VTK from 'vue-vtk-js';

// Add vue-vtk-js components to Vue
Vue.use(VTK);

new Vue({
render: (h) => h(App),
}).$mount('#app');
```

Simple example of a geometric dataset render into a view.

```







```

or something like

```



```

## Building library

`npm run build:debug` for development package or `npm run build` for optimized bundle.