📄 SetRotationCommand.js
¶
📊 Analysis Summary¶
Metric | Count |
---|---|
🔧 Functions | 5 |
🧱 Classes | 1 |
📦 Imports | 2 |
📚 Table of Contents¶
🛠️ File Location:¶
📂 editor/js/commands/SetRotationCommand.js
📦 Imports¶
Name | Source |
---|---|
Command |
../Command.js |
Euler |
three |
Functions¶
SetRotationCommand.execute(): void
¶
Returns: void
Calls:
this.object.rotation.copy
this.object.updateMatrixWorld
this.editor.signals.objectChanged.dispatch
Code
SetRotationCommand.undo(): void
¶
Returns: void
Calls:
this.object.rotation.copy
this.object.updateMatrixWorld
this.editor.signals.objectChanged.dispatch
Code
SetRotationCommand.update(command: any): void
¶
Parameters:
command
any
Returns: void
Calls:
this.newRotation.copy
SetRotationCommand.toJSON(): { type: string; id: number; name: string; }
¶
Returns: { type: string; id: number; name: string; }
Calls:
super.toJSON
this.oldRotation.toArray
this.newRotation.toArray
Code
SetRotationCommand.fromJSON(json: any): void
¶
Parameters:
json
any
Returns: void
Calls:
super.fromJSON
this.editor.objectByUuid
new Euler().fromArray
Code
Classes¶
SetRotationCommand
¶
Class Code
class SetRotationCommand extends Command {
/**
* @param {Editor} editor
* @param {THREE.Object3D|null} object
* @param {THREE.Euler|null} newRotation
* @param {THREE.Euler|null} optionalOldRotation
* @constructor
*/
constructor( editor, object = null, newRotation = null, optionalOldRotation = null ) {
super( editor );
this.type = 'SetRotationCommand';
this.name = editor.strings.getKey( 'command/SetRotation' );
this.updatable = true;
this.object = object;
if ( object !== null && newRotation !== null ) {
this.oldRotation = object.rotation.clone();
this.newRotation = newRotation.clone();
}
if ( optionalOldRotation !== null ) {
this.oldRotation = optionalOldRotation.clone();
}
}
execute() {
this.object.rotation.copy( this.newRotation );
this.object.updateMatrixWorld( true );
this.editor.signals.objectChanged.dispatch( this.object );
}
undo() {
this.object.rotation.copy( this.oldRotation );
this.object.updateMatrixWorld( true );
this.editor.signals.objectChanged.dispatch( this.object );
}
update( command ) {
this.newRotation.copy( command.newRotation );
}
toJSON() {
const output = super.toJSON( this );
output.objectUuid = this.object.uuid;
output.oldRotation = this.oldRotation.toArray();
output.newRotation = this.newRotation.toArray();
return output;
}
fromJSON( json ) {
super.fromJSON( json );
this.object = this.editor.objectByUuid( json.objectUuid );
this.oldRotation = new Euler().fromArray( json.oldRotation );
this.newRotation = new Euler().fromArray( json.newRotation );
}
}