Skip to main content

Type Alias: RotateModel()

RotateModel = (angle?) => Promise<void>

Function

Rotates a freely movable product by a specified angle.

This function rotates the currently selected product by the specified angle (in degrees). It only works on products that have the "freeMove" property enabled, which allows them to be positioned freely in the scene rather than being constrained by connection points.

Rotation is useful for orienting decorative elements, standalone furniture, or accessories that don't connect directly to other modular components.

Parameters

angle?

number

Rotation angle in degrees (default: 45)

Returns

Promise<void>

Example

// Rotate the selected product 45 degrees clockwise
document.getElementById('rotate-right-btn').addEventListener('click', () => {
window.mimeeqApp.actions.rotateModel(45);
});

// Rotate the selected product 45 degrees counter-clockwise
document.getElementById('rotate-left-btn').addEventListener('click', () => {
window.mimeeqApp.actions.rotateModel(-45);
});