mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-22 08:26:26 +01:00
13 lines
No EOL
336 B
JavaScript
13 lines
No EOL
336 B
JavaScript
import * as BREPBuilder from './brep-builder'
|
|
|
|
export function box(w, h, d) {
|
|
const wh = w * 0.5;
|
|
const hh = h * 0.5;
|
|
const dh = d * 0.5;
|
|
return BREPBuilder.createPrism([
|
|
BREPBuilder.point(-wh, -hh, dh),
|
|
BREPBuilder.point( wh, -hh, dh),
|
|
BREPBuilder.point( wh, hh, dh),
|
|
BREPBuilder.point(-wh, hh, dh)
|
|
], d);
|
|
} |