mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 20:32:02 +08:00
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
|
import { PolyhedronBufferGeometry } from 'three';
|
||
|
import Geometry from './Geometry.js';
|
||
|
|
||
|
export default {
|
||
|
extends: Geometry,
|
||
|
props: {
|
||
|
radius: { type: Number, default: 1 },
|
||
|
detail: { type: Number, default: 0 },
|
||
|
},
|
||
|
created() {
|
||
|
this.parent.geometry = new PolyhedronBufferGeometry(this.radius, this.detail);
|
||
|
},
|
||
|
};
|