1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- import * as THREE from 'three';
- import { UIDiv, UIRow, UIText, UINumber, UIInteger } from './libs/ui.js';
- import { SetGeometryCommand } from './commands/SetGeometryCommand.js';
- function GeometryParametersPanel( editor, object ) {
- const strings = editor.strings;
- const container = new UIDiv();
- const geometry = object.geometry;
- const parameters = geometry.parameters;
- // width
- const widthRow = new UIRow();
- const width = new UINumber( parameters.width ).onChange( update );
- widthRow.add( new UIText( strings.getKey( 'sidebar/geometry/box_geometry/width' ) ).setWidth( '90px' ) );
- widthRow.add( width );
- container.add( widthRow );
- // height
- const heightRow = new UIRow();
- const height = new UINumber( parameters.height ).onChange( update );
- heightRow.add( new UIText( strings.getKey( 'sidebar/geometry/box_geometry/height' ) ).setWidth( '90px' ) );
- heightRow.add( height );
- container.add( heightRow );
- // depth
- const depthRow = new UIRow();
- const depth = new UINumber( parameters.depth ).onChange( update );
- depthRow.add( new UIText( strings.getKey( 'sidebar/geometry/box_geometry/depth' ) ).setWidth( '90px' ) );
- depthRow.add( depth );
- container.add( depthRow );
- // widthSegments
- const widthSegmentsRow = new UIRow();
- const widthSegments = new UIInteger( parameters.widthSegments ).setRange( 1, Infinity ).onChange( update );
- widthSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/box_geometry/widthseg' ) ).setWidth( '90px' ) );
- widthSegmentsRow.add( widthSegments );
- container.add( widthSegmentsRow );
- // heightSegments
- const heightSegmentsRow = new UIRow();
- const heightSegments = new UIInteger( parameters.heightSegments ).setRange( 1, Infinity ).onChange( update );
- heightSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/box_geometry/heightseg' ) ).setWidth( '90px' ) );
- heightSegmentsRow.add( heightSegments );
- container.add( heightSegmentsRow );
- // depthSegments
- const depthSegmentsRow = new UIRow();
- const depthSegments = new UIInteger( parameters.depthSegments ).setRange( 1, Infinity ).onChange( update );
- depthSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/box_geometry/depthseg' ) ).setWidth( '90px' ) );
- depthSegmentsRow.add( depthSegments );
- container.add( depthSegmentsRow );
- //
- function update() {
- editor.execute( new SetGeometryCommand( editor, object, new THREE.BoxGeometry(
- width.getValue(),
- height.getValue(),
- depth.getValue(),
- widthSegments.getValue(),
- heightSegments.getValue(),
- depthSegments.getValue()
- ) ) );
- }
- return container;
- }
- export { GeometryParametersPanel };
|