mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 12:22:03 +08:00
22 lines
425 B
JavaScript
22 lines
425 B
JavaScript
import { SphereBufferGeometry } from 'three';
|
|
import Mesh from './Mesh.js';
|
|
|
|
export default {
|
|
extends: Mesh,
|
|
props: {
|
|
radius: Number,
|
|
widthSegments: {
|
|
type: Number,
|
|
default: 12,
|
|
},
|
|
heightSegments: {
|
|
type: Number,
|
|
default: 12,
|
|
},
|
|
},
|
|
created() {
|
|
this.geometry = new SphereBufferGeometry(this.radius, this.widthSegments, this.heightSegments);
|
|
},
|
|
__hmrId: 'Sphere',
|
|
};
|