123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- import * as THREE from 'three';
- import { UIDiv, UIRow, UIText, UIInteger, UICheckbox, UINumber } from './libs/ui.js';
- import { SetGeometryCommand } from './commands/SetGeometryCommand.js';
- function GeometryParametersPanel( editor, object ) {
- const strings = editor.strings;
- const signals = editor.signals;
- const container = new UIDiv();
- const geometry = object.geometry;
- const parameters = geometry.parameters;
- // radiusTop
- const radiusTopRow = new UIRow();
- const radiusTop = new UINumber( parameters.radiusTop ).onChange( update );
- radiusTopRow.add( new UIText( strings.getKey( 'sidebar/geometry/cylinder_geometry/radiustop' ) ).setClass( 'Label' ) );
- radiusTopRow.add( radiusTop );
- container.add( radiusTopRow );
- // radiusBottom
- const radiusBottomRow = new UIRow();
- const radiusBottom = new UINumber( parameters.radiusBottom ).onChange( update );
- radiusBottomRow.add( new UIText( strings.getKey( 'sidebar/geometry/cylinder_geometry/radiusbottom' ) ).setClass( 'Label' ) );
- radiusBottomRow.add( radiusBottom );
- container.add( radiusBottomRow );
- // height
- const heightRow = new UIRow();
- const height = new UINumber( parameters.height ).onChange( update );
- heightRow.add( new UIText( strings.getKey( 'sidebar/geometry/cylinder_geometry/height' ) ).setClass( 'Label' ) );
- heightRow.add( height );
- container.add( heightRow );
- // radialSegments
- const radialSegmentsRow = new UIRow();
- const radialSegments = new UIInteger( parameters.radialSegments ).setRange( 1, Infinity ).onChange( update );
- radialSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/cylinder_geometry/radialsegments' ) ).setClass( 'Label' ) );
- radialSegmentsRow.add( radialSegments );
- container.add( radialSegmentsRow );
- // heightSegments
- const heightSegmentsRow = new UIRow();
- const heightSegments = new UIInteger( parameters.heightSegments ).setRange( 1, Infinity ).onChange( update );
- heightSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/cylinder_geometry/heightsegments' ) ).setClass( 'Label' ) );
- heightSegmentsRow.add( heightSegments );
- container.add( heightSegmentsRow );
- // openEnded
- const openEndedRow = new UIRow();
- const openEnded = new UICheckbox( parameters.openEnded ).onChange( update );
- openEndedRow.add( new UIText( strings.getKey( 'sidebar/geometry/cylinder_geometry/openended' ) ).setClass( 'Label' ) );
- openEndedRow.add( openEnded );
- container.add( openEndedRow );
- //
- function refreshUI() {
- const parameters = object.geometry.parameters;
- radiusTop.setValue( parameters.radiusTop );
- radiusBottom.setValue( parameters.radiusBottom );
- height.setValue( parameters.height );
- radialSegments.setValue( parameters.radialSegments );
- heightSegments.setValue( parameters.heightSegments );
- openEnded.setValue( parameters.openEnded );
- }
- signals.geometryChanged.add( function ( mesh ) {
- if ( mesh === object ) {
- refreshUI();
- }
- } );
- //
- function update() {
- editor.execute( new SetGeometryCommand( editor, object, new THREE.CylinderGeometry(
- radiusTop.getValue(),
- radiusBottom.getValue(),
- height.getValue(),
- radialSegments.getValue(),
- heightSegments.getValue(),
- openEnded.getValue()
- ) ) );
- }
- return container;
- }
- export { GeometryParametersPanel };
|