pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
11 lines (10 loc) • 445 B
TypeScript
import type { Matrix } from '../../../maths/matrix/Matrix';
import type { Container } from '../Container';
/**
* Updates the local transform of a container based on its properties.
* @param lt - The matrix to update with the local transform values.
* @param container - The container whose local transform is being updated.
* @deprecated
* @internal
*/
export declare function updateLocalTransform(lt: Matrix, container: Container): void;