Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/kitware/vue-vtk-js
- Owner: Kitware
- Created: 2021-03-09T23:03:07.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-06-07T14:53:21.000Z (7 months ago)
- Last Synced: 2024-10-29T01:22:40.211Z (2 months ago)
- Language: JavaScript
- Size: 2.33 MB
- Stars: 36
- Watchers: 7
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.