1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 12:22:03 +08:00
trois/src/meshes/Sphere.js

24 lines
408 B
JavaScript
Raw Normal View History

2020-09-14 22:57:11 +08:00
import {
SphereBufferGeometry,
} from 'three';
import Mesh from './Mesh.js';
export default {
extends: Mesh,
props: {
radius: Number,
2020-09-15 04:53:30 +08:00
widthSegments: {
type: Number,
default: 12,
},
heightSegments: {
type: Number,
default: 12,
},
2020-09-14 22:57:11 +08:00
},
created() {
2020-09-15 04:53:30 +08:00
this.geometry = new SphereBufferGeometry(this.radius, this.widthSegments, this.heightSegments);
2020-09-14 22:57:11 +08:00
},
};