You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
1.9 KiB
74 lines
1.9 KiB
import * as THREE from 'three';
|
|
|
|
import { UIDiv, UIRow, UIText, UIInteger, UINumber } 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/plane_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/plane_geometry/height' ) ).setWidth( '90px' ) );
|
|
heightRow.add( height );
|
|
|
|
container.add( heightRow );
|
|
|
|
// widthSegments
|
|
|
|
const widthSegmentsRow = new UIRow();
|
|
const widthSegments = new UIInteger( parameters.widthSegments ).setRange( 1, Infinity ).onChange( update );
|
|
|
|
widthSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/plane_geometry/widthsegments' ) ).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/plane_geometry/heightsegments' ) ).setWidth( '90px' ) );
|
|
heightSegmentsRow.add( heightSegments );
|
|
|
|
container.add( heightSegmentsRow );
|
|
|
|
|
|
//
|
|
|
|
function update() {
|
|
|
|
editor.execute( new SetGeometryCommand( editor, object, new THREE.PlaneGeometry(
|
|
width.getValue(),
|
|
height.getValue(),
|
|
widthSegments.getValue(),
|
|
heightSegments.getValue()
|
|
) ) );
|
|
|
|
}
|
|
|
|
return container;
|
|
|
|
}
|
|
|
|
export { GeometryParametersPanel };
|
|
|