mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 12:22:03 +08:00
32 lines
886 B
JavaScript
32 lines
886 B
JavaScript
|
import { TorusKnotBufferGeometry } from 'three';
|
||
|
import { watch } from 'vue';
|
||
|
import Mesh from './Mesh.js';
|
||
|
|
||
|
export default {
|
||
|
extends: Mesh,
|
||
|
props: {
|
||
|
radius: { type: Number, default: 1 },
|
||
|
tube: { type: Number, default: 0.4 },
|
||
|
radialSegments: { type: Number, default: 64 },
|
||
|
tubularSegments: { type: Number, default: 8 },
|
||
|
p: { type: Number, default: 2 },
|
||
|
q: { type: Number, default: 3 },
|
||
|
},
|
||
|
created() {
|
||
|
this.createGeometry();
|
||
|
|
||
|
const watchProps = ['radius', 'tube', 'radialSegments', 'tubularSegments', 'p', 'q'];
|
||
|
watchProps.forEach(prop => {
|
||
|
watch(() => this[prop], () => {
|
||
|
this.refreshGeometry();
|
||
|
});
|
||
|
});
|
||
|
},
|
||
|
methods: {
|
||
|
createGeometry() {
|
||
|
this.geometry = new TorusKnotBufferGeometry(this.radius, this.tube, this.radialSegments, this.tubularSegments, this.p, this.q);
|
||
|
},
|
||
|
},
|
||
|
__hmrId: 'TorusKnot',
|
||
|
};
|