You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
earthquake_3d_viewer_front/three/editor/js/Sidebar.Geometry.TubeGeomet...

136 lines
3.8 KiB
JavaScript

import * as THREE from 'three';
import { UIDiv, UIRow, UIText, UIInteger, UISelect, UICheckbox, UINumber } from './libs/ui.js';
import { UIPoints3 } from './libs/ui.three.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;
// points
const pointsRow = new UIRow();
pointsRow.add( new UIText( strings.getKey( 'sidebar/geometry/tube_geometry/path' ) ).setClass( 'Label' ) );
const points = new UIPoints3().setValue( parameters.path.points ).onChange( update );
pointsRow.add( points );
container.add( pointsRow );
// radius
const radiusRow = new UIRow();
const radius = new UINumber( parameters.radius ).onChange( update );
radiusRow.add( new UIText( strings.getKey( 'sidebar/geometry/tube_geometry/radius' ) ).setClass( 'Label' ) );
radiusRow.add( radius );
container.add( radiusRow );
// tubularSegments
const tubularSegmentsRow = new UIRow();
const tubularSegments = new UIInteger( parameters.tubularSegments ).onChange( update );
tubularSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/tube_geometry/tubularsegments' ) ).setClass( 'Label' ) );
tubularSegmentsRow.add( tubularSegments );
container.add( tubularSegmentsRow );
// radialSegments
const radialSegmentsRow = new UIRow();
const radialSegments = new UIInteger( parameters.radialSegments ).onChange( update );
radialSegmentsRow.add( new UIText( strings.getKey( 'sidebar/geometry/tube_geometry/radialsegments' ) ).setClass( 'Label' ) );
radialSegmentsRow.add( radialSegments );
container.add( radialSegmentsRow );
// closed
const closedRow = new UIRow();
const closed = new UICheckbox( parameters.closed ).onChange( update );
closedRow.add( new UIText( strings.getKey( 'sidebar/geometry/tube_geometry/closed' ) ).setClass( 'Label' ) );
closedRow.add( closed );
container.add( closedRow );
// curveType
const curveTypeRow = new UIRow();
const curveType = new UISelect().setOptions( { centripetal: 'centripetal', chordal: 'chordal', catmullrom: 'catmullrom' } ).setValue( parameters.path.curveType ).onChange( update );
curveTypeRow.add( new UIText( strings.getKey( 'sidebar/geometry/tube_geometry/curvetype' ) ).setClass( 'Label' ), curveType );
container.add( curveTypeRow );
// tension
const tensionRow = new UIRow().setDisplay( curveType.getValue() == 'catmullrom' ? '' : 'none' );
const tension = new UINumber( parameters.path.tension ).setStep( 0.01 ).onChange( update );
tensionRow.add( new UIText( strings.getKey( 'sidebar/geometry/tube_geometry/tension' ) ).setClass( 'Label' ), tension );
container.add( tensionRow );
//
function refreshUI() {
const parameters = object.geometry.parameters;
tubularSegments.setValue( parameters.tubularSegments );
radius.setValue( parameters.radius );
radialSegments.setValue( parameters.radialSegments );
closed.setValue( parameters.closed );
points.setValue( parameters.path.points, false );
curveType.setValue( parameters.path.curveType );
tension.setValue( parameters.path.tension );
tensionRow.setDisplay( curveType.getValue() == 'catmullrom' ? '' : 'none' );
}
signals.geometryChanged.add( function ( mesh ) {
if ( mesh === object ) {
refreshUI();
}
} );
//
function update() {
tensionRow.setDisplay( curveType.getValue() == 'catmullrom' ? '' : 'none' );
editor.execute( new SetGeometryCommand( editor, object, new THREE.TubeGeometry(
new THREE.CatmullRomCurve3( points.getValue(), closed.getValue(), curveType.getValue(), tension.getValue() ),
tubularSegments.getValue(),
radius.getValue(),
radialSegments.getValue(),
closed.getValue()
) ) );
}
return container;
}
export { GeometryParametersPanel };