mirror of
https://github.com/troisjs/trois.git
synced 2024-11-23 20:02:32 +08:00
Merge pull request #120 from xewl/master
Add missing SphereGeometry parameters
This commit is contained in:
commit
da6396ccfe
@ -5,10 +5,14 @@ export const props = {
|
||||
radius: { type: Number, default: 1 },
|
||||
widthSegments: { type: Number, default: 12 },
|
||||
heightSegments: { type: Number, default: 12 },
|
||||
phiStart: { type: Number, default: 0 },
|
||||
phiLength: { type: Number, default: Math.PI * 2 },
|
||||
thetaStart: { type: Number, default: 0 },
|
||||
thetaLength: { type: Number, default: Math.PI },
|
||||
} as const
|
||||
|
||||
export function createGeometry(comp: any): SphereGeometry {
|
||||
return new SphereGeometry(comp.radius, comp.widthSegments, comp.heightSegments)
|
||||
return new SphereGeometry(comp.radius, comp.widthSegments, comp.heightSegments, comp.phiStart, comp.phiLength, comp.thetaStart, comp.thetaLength)
|
||||
}
|
||||
|
||||
export default geometryComponent('SphereGeometry', props, createGeometry)
|
||||
|
Loading…
Reference in New Issue
Block a user