-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcylinder.js
50 lines (43 loc) · 1.1 KB
/
cylinder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
'use strict'
const PrimitiveCylinder = require('primitive-cylinder')
const { Geometry } = require('axis3d')
module.exports = CylinderGeometry
function CylinderGeometry(opts) {
// ensure object
if (null == opts || 'object' != typeof opts) {
opts = {}
}
let { height,
radiusTop,
radiusBottom,
radialSegments,
heightSegments
} = opts
// defaults
if (null == height) { height = 5 }
if (null == radiusTop) { radiusTop = 1 }
if (null == radiusBottom) { radiusBottom = 1 }
if (null == radialSegments) { radialSegments = 50 }
if (null == heightSegments) { heightSegments = 50 }
for (const k in opts) {
if (opts.hasOwnProperty(k) && 'number' != typeof opts[k]) {
throw new TypeError(
`Expecting '${k}' to be a number. Got ${typeof opts[k]}.`)
}
}
const cylinder = new Geometry({
complex: PrimitiveCylinder(
radiusTop,
radiusBottom,
height,
radialSegments,
heightSegments),
})
return Object.assign(cylinder, {
height,
radiusTop,
radiusBottom,
radialSegments,
heightSegments,
})
}