1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00

refactor box

This commit is contained in:
Kevin Levron 2021-03-15 19:41:07 +01:00
parent 85d220f4f8
commit 98a8c01ef1
2 changed files with 24 additions and 31 deletions

View File

@ -1,9 +1,7 @@
import { BoxGeometry } from 'three';
import Geometry from './Geometry.js';
export default {
extends: Geometry,
props: {
export const props = {
size: Number,
width: { type: Number, default: 1 },
height: { type: Number, default: 1 },
@ -11,14 +9,22 @@ export default {
widthSegments: { type: Number, default: 1 },
heightSegments: { type: Number, default: 1 },
depthSegments: { type: Number, default: 1 },
},
};
export function createGeometry(comp) {
if (comp.size) {
return new BoxGeometry(comp.size, comp.size, comp.size, comp.widthSegments, comp.heightSegments, comp.depthSegments);
} else {
return new BoxGeometry(comp.width, comp.height, comp.depth, comp.widthSegments, comp.heightSegments, comp.depthSegments);
}
};
export default {
extends: Geometry,
props,
methods: {
createGeometry() {
let w = this.width, h = this.height, d = this.depth;
if (this.size) {
w = this.size; h = this.size; d = this.size;
}
this.geometry = new BoxGeometry(w, h, d, this.widthSegments, this.heightSegments, this.depthSegments);
this.geometry = createGeometry(this);
},
},
};

View File

@ -1,22 +1,13 @@
import { BoxBufferGeometry } from 'three';
import { watch } from 'vue';
import Mesh from './Mesh.js';
import { props, createGeometry } from '../geometries/BoxGeometry.js';
export default {
extends: Mesh,
props: {
size: Number,
width: { type: Number, default: 1 },
height: { type: Number, default: 1 },
depth: { type: Number, default: 1 },
widthSegments: { type: Number, default: 1 },
heightSegments: { type: Number, default: 1 },
depthSegments: { type: Number, default: 1 },
},
props,
created() {
this.createGeometry();
['size', 'width', 'height', 'depth', 'widthSegments', 'heightSegments', 'depthSegments'].forEach(prop => {
Object.keys(props).forEach(prop => {
watch(() => this[prop], () => {
this.refreshGeometry();
});
@ -24,11 +15,7 @@ export default {
},
methods: {
createGeometry() {
if (this.size) {
this.geometry = new BoxBufferGeometry(this.size, this.size, this.size);
} else {
this.geometry = new BoxBufferGeometry(this.width, this.height, this.depth);
}
this.geometry = createGeometry(this);
},
},
__hmrId: 'Box',