123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- import * as THREE from '../../build/three.module.js';
- import { UIRow, UIText, UIInteger, UINumber } from './libs/ui.js';
- import { SetGeometryCommand } from './commands/SetGeometryCommand.js';
- function GeometryParametersPanel( editor, object ) {
- var strings = editor.strings;
- var container = new UIRow();
- var geometry = object.geometry;
- var parameters = geometry.parameters;
- // radius
- var radiusRow = new UIRow();
- var radius = new UINumber( parameters.radius ).onChange( update );
- radiusRow.add( new UIText( strings.getKey( 'sidebar/geometry/dodecahedron_geometry/radius' ) ).setWidth( '90px' ) );
- radiusRow.add( radius );
- container.add( radiusRow );
- // detail
- var detailRow = new UIRow();
- var detail = new UIInteger( parameters.detail ).setRange( 0, Infinity ).onChange( update );
- detailRow.add( new UIText( strings.getKey( 'sidebar/geometry/dodecahedron_geometry/detail' ) ).setWidth( '90px' ) );
- detailRow.add( detail );
- container.add( detailRow );
- //
- function update() {
- editor.execute( new SetGeometryCommand( editor, object, new THREE.DodecahedronGeometry(
- radius.getValue(),
- detail.getValue()
- ) ) );
- }
- return container;
- }
- export { GeometryParametersPanel };
|