mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
geometries refactoring
This commit is contained in:
parent
6162fd6960
commit
900644d7db
@ -4,16 +4,21 @@ import Geometry from './Geometry.js';
|
|||||||
export default {
|
export default {
|
||||||
extends: Geometry,
|
extends: Geometry,
|
||||||
props: {
|
props: {
|
||||||
size: { type: Number },
|
size: Number,
|
||||||
width: { type: Number, default: 1 },
|
width: { type: Number, default: 1 },
|
||||||
height: { type: Number, default: 1 },
|
height: { type: Number, default: 1 },
|
||||||
depth: { type: Number, default: 1 },
|
depth: { type: Number, default: 1 },
|
||||||
|
widthSegments: { type: Number, default: 1 },
|
||||||
|
heightSegments: { type: Number, default: 1 },
|
||||||
|
depthSegments: { type: Number, default: 1 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
if (this.size) {
|
createGeometry() {
|
||||||
this.parent.geometry = new BoxBufferGeometry(this.size, this.size, this.size);
|
let w = this.width, h = this.height, d = this.depth;
|
||||||
} else {
|
if (this.size) {
|
||||||
this.parent.geometry = new BoxBufferGeometry(this.width, this.height, this.depth);
|
w = this.size; h = this.size; d = this.size;
|
||||||
}
|
}
|
||||||
|
this.geometry = new BoxBufferGeometry(w, h, d, this.widthSegments, this.heightSegments, this.depthSegments);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,9 @@ export default {
|
|||||||
thetaStart: { type: Number, default: 0 },
|
thetaStart: { type: Number, default: 0 },
|
||||||
thetaLength: { type: Number, default: Math.PI * 2 },
|
thetaLength: { type: Number, default: Math.PI * 2 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new CircleBufferGeometry(this.radius, this.segments, this.thetaStart, this.thetaLength);
|
createGeometry() {
|
||||||
|
this.geometry = new CircleBufferGeometry(this.radius, this.segments, this.thetaStart, this.thetaLength);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -12,7 +12,9 @@ export default {
|
|||||||
thetaStart: { type: Number, default: 0 },
|
thetaStart: { type: Number, default: 0 },
|
||||||
thetaLength: { type: Number, default: Math.PI * 2 },
|
thetaLength: { type: Number, default: Math.PI * 2 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new ConeBufferGeometry(this.radius, this.height, this.radialSegments, this.heightSegments, this.openEnded, this.thetaStart, this.thetaLength);
|
createGeometry() {
|
||||||
|
this.geometry = new ConeBufferGeometry(this.radius, this.height, this.radialSegments, this.heightSegments, this.openEnded, this.thetaStart, this.thetaLength);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -13,7 +13,9 @@ export default {
|
|||||||
thetaStart: { type: Number, default: 0 },
|
thetaStart: { type: Number, default: 0 },
|
||||||
thetaLength: { type: Number, default: Math.PI * 2 },
|
thetaLength: { type: Number, default: Math.PI * 2 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new CylinderBufferGeometry(this.radiusTop, this.radiusBottom, this.height, this.radialSegments, this.heightSegments, this.openEnded, this.thetaStart, this.thetaLength);
|
createGeometry() {
|
||||||
|
this.geometry = new CylinderBufferGeometry(this.radiusTop, this.radiusBottom, this.height, this.radialSegments, this.heightSegments, this.openEnded, this.thetaStart, this.thetaLength);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -7,7 +7,9 @@ export default {
|
|||||||
radius: { type: Number, default: 1 },
|
radius: { type: Number, default: 1 },
|
||||||
detail: { type: Number, default: 0 },
|
detail: { type: Number, default: 0 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new DodecahedronBufferGeometry(this.radius, this.detail);
|
createGeometry() {
|
||||||
|
this.geometry = new DodecahedronBufferGeometry(this.radius, this.detail);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -1,12 +1,39 @@
|
|||||||
|
import { watch } from 'vue';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
inject: ['parent'],
|
emits: ['ready'],
|
||||||
beforeMount() {
|
inject: ['mesh'],
|
||||||
if (!this.parent) {
|
created() {
|
||||||
|
if (!this.mesh) {
|
||||||
console.error('Missing parent Mesh');
|
console.error('Missing parent Mesh');
|
||||||
}
|
}
|
||||||
|
this.watchProps = [];
|
||||||
|
Object.entries(this.$props).forEach(e => this.watchProps.push(e[0]));
|
||||||
|
},
|
||||||
|
beforeMount() {
|
||||||
|
this.createGeometry();
|
||||||
|
this.mesh.setGeometry(this.geometry);
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.addWatchers();
|
||||||
},
|
},
|
||||||
unmounted() {
|
unmounted() {
|
||||||
this.parent.geometry.dispose();
|
this.geometry.dispose();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
addWatchers() {
|
||||||
|
this.watchProps.forEach(prop => {
|
||||||
|
watch(() => this[prop], () => {
|
||||||
|
this.refreshGeometry();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
refreshGeometry() {
|
||||||
|
const oldGeo = this.geometry;
|
||||||
|
this.createGeometry();
|
||||||
|
this.mesh.setGeometry(this.geometry);
|
||||||
|
oldGeo.dispose();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
render() {
|
render() {
|
||||||
return [];
|
return [];
|
||||||
|
@ -7,7 +7,9 @@ export default {
|
|||||||
radius: { type: Number, default: 1 },
|
radius: { type: Number, default: 1 },
|
||||||
detail: { type: Number, default: 0 },
|
detail: { type: Number, default: 0 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new IcosahedronBufferGeometry(this.radius, this.detail);
|
createGeometry() {
|
||||||
|
this.geometry = new IcosahedronBufferGeometry(this.radius, this.detail);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,9 @@ export default {
|
|||||||
phiStart: { type: Number, default: 0 },
|
phiStart: { type: Number, default: 0 },
|
||||||
phiLength: { type: Number, default: Math.PI * 2 },
|
phiLength: { type: Number, default: Math.PI * 2 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new LatheBufferGeometry(this.points, this.segments, this.phiStart, this.phiLength);
|
createGeometry() {
|
||||||
|
this.geometry = new LatheBufferGeometry(this.points, this.segments, this.phiStart, this.phiLength);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -7,7 +7,9 @@ export default {
|
|||||||
radius: { type: Number, default: 1 },
|
radius: { type: Number, default: 1 },
|
||||||
detail: { type: Number, default: 0 },
|
detail: { type: Number, default: 0 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new OctahedronBufferGeometry(this.radius, this.detail);
|
createGeometry() {
|
||||||
|
this.geometry = new OctahedronBufferGeometry(this.radius, this.detail);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -9,7 +9,9 @@ export default {
|
|||||||
radius: { type: Number, default: 1 },
|
radius: { type: Number, default: 1 },
|
||||||
detail: { type: Number, default: 0 },
|
detail: { type: Number, default: 0 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new PolyhedronBufferGeometry(this.vertices, this.indices, this.radius, this.detail);
|
createGeometry() {
|
||||||
|
this.geometry = new PolyhedronBufferGeometry(this.vertices, this.indices, this.radius, this.detail);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -11,7 +11,9 @@ export default {
|
|||||||
thetaStart: { type: Number, default: 0 },
|
thetaStart: { type: Number, default: 0 },
|
||||||
thetaLength: { type: Number, default: Math.PI * 2 },
|
thetaLength: { type: Number, default: Math.PI * 2 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new RingBufferGeometry(this.innerRadius, this.outerRadius, this.thetaSegments, this.phiSegments, this.thetaStart, this.thetaLength);
|
createGeometry() {
|
||||||
|
this.geometry = new RingBufferGeometry(this.innerRadius, this.outerRadius, this.thetaSegments, this.phiSegments, this.thetaStart, this.thetaLength);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -4,11 +4,13 @@ import Geometry from './Geometry.js';
|
|||||||
export default {
|
export default {
|
||||||
extends: Geometry,
|
extends: Geometry,
|
||||||
props: {
|
props: {
|
||||||
radius: Number,
|
radius: { type: Number, default: 1 },
|
||||||
widthSegments: { type: Number, default: 12 },
|
widthSegments: { type: Number, default: 12 },
|
||||||
heightSegments: { type: Number, default: 12 },
|
heightSegments: { type: Number, default: 12 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new SphereBufferGeometry(this.radius, this.widthSegments, this.heightSegments);
|
createGeometry() {
|
||||||
|
this.geometry = new SphereBufferGeometry(this.radius, this.widthSegments, this.heightSegments);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -7,7 +7,9 @@ export default {
|
|||||||
radius: { type: Number, default: 1 },
|
radius: { type: Number, default: 1 },
|
||||||
detail: { type: Number, default: 0 },
|
detail: { type: Number, default: 0 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new TetrahedronBufferGeometry(this.radius, this.detail);
|
createGeometry() {
|
||||||
|
this.geometry = new TetrahedronBufferGeometry(this.radius, this.detail);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -10,7 +10,9 @@ export default {
|
|||||||
tubularSegments: { type: Number, default: 6 },
|
tubularSegments: { type: Number, default: 6 },
|
||||||
arc: { type: Number, default: Math.PI * 2 },
|
arc: { type: Number, default: Math.PI * 2 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new TorusBufferGeometry(this.radius, this.tube, this.radialSegments, this.tubularSegments, this.arc);
|
createGeometry() {
|
||||||
|
this.geometry = new TorusBufferGeometry(this.radius, this.tube, this.radialSegments, this.tubularSegments, this.arc);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -11,7 +11,9 @@ export default {
|
|||||||
p: { type: Number, default: 2 },
|
p: { type: Number, default: 2 },
|
||||||
q: { type: Number, default: 3 },
|
q: { type: Number, default: 3 },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new TorusKnotBufferGeometry(this.radius, this.tube, this.radialSegments, this.tubularSegments, this.p, this.q);
|
createGeometry() {
|
||||||
|
this.geometry = new TorusKnotBufferGeometry(this.radius, this.tube, this.radialSegments, this.tubularSegments, this.p, this.q);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -10,7 +10,9 @@ export default {
|
|||||||
radiusSegments: { type: Number, default: 8 },
|
radiusSegments: { type: Number, default: 8 },
|
||||||
closed: { type: Boolean, default: false },
|
closed: { type: Boolean, default: false },
|
||||||
},
|
},
|
||||||
created() {
|
methods: {
|
||||||
this.parent.geometry = new TubeBufferGeometry(this.path, this.tubularSegments, this.radius, this.radiusSegments, this.closed);
|
createGeometry() {
|
||||||
|
this.geometry = new TubeBufferGeometry(this.path, this.tubularSegments, this.radius, this.radiusSegments, this.closed);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
export { default as BoxGeometry } from './BoxGeometry.js';
|
export { default as BoxGeometry } from './BoxGeometry.js';
|
||||||
export { default as CircleGeometry } from './CircleGeometry.js';
|
export { default as CircleGeometry } from './CircleGeometry.js';
|
||||||
|
export { default as ConeGeometry } from './ConeGeometry.js';
|
||||||
export { default as CylinderGeometry } from './CylinderGeometry.js';
|
export { default as CylinderGeometry } from './CylinderGeometry.js';
|
||||||
export { default as DodecahedronGeometry } from './DodecahedronGeometry.js';
|
export { default as DodecahedronGeometry } from './DodecahedronGeometry.js';
|
||||||
export { default as IcosahedronGeometry } from './IcosahedronGeometry.js';
|
export { default as IcosahedronGeometry } from './IcosahedronGeometry.js';
|
||||||
|
Loading…
Reference in New Issue
Block a user