/** * @author mrdoob / http://mrdoob.com/ */ import * as THREE from '../../build/three.module.js'; import { UIRow, UIText, UIInteger, UINumber } from './libs/ui.js'; import { SetGeometryCommand } from './commands/SetGeometryCommand.js'; var SidebarGeometryDodecahedronGeometry = function ( 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.DodecahedronBufferGeometry( radius.getValue(), detail.getValue() ) ) ); } return container; }; export { SidebarGeometryDodecahedronGeometry };