| 123456789101112131415161718192021222324252627282930313233343536373839 | import { ObjectNode, SelectInput, Element, LabelElement } from '../../libs/flow.module.js';import { MathNode, Vector3Node } from '../../renderers/nodes/Nodes.js';const DEFAULT_VALUE = new Vector3Node();export class TrigonometryEditor extends ObjectNode {	constructor() {		const node = new MathNode( MathNode.SIN, DEFAULT_VALUE );		super( 'Trigonometry', 1, node, 200 );		const optionsField = new SelectInput( [			{ name: 'Sin', value: MathNode.SIN },			{ name: 'Cos', value: MathNode.COS },			{ name: 'Tan', value: MathNode.TAN }		] ).onChange( () => {			node.method = optionsField.getValue();			this.invalidate();		} );		const input = new LabelElement( 'Source' ).setInput( 1 );		input.onConnect( () => {			node.aNode = input.linkedExtra || DEFAULT_VALUE;		} );		this.add( new Element().add( optionsField ) )			.add( input );	}}
 |