pivotTools.d.ts 576 B

1234567891011121314151617181920
  1. import type { TransformNode } from "../Meshes/transformNode";
  2. /**
  3. * Class containing a set of static utilities functions for managing Pivots
  4. * @internal
  5. */
  6. export declare class PivotTools {
  7. private static _PivotCached;
  8. private static _OldPivotPoint;
  9. private static _PivotTranslation;
  10. private static _PivotTmpVector;
  11. private static _PivotPostMultiplyPivotMatrix;
  12. /**
  13. * @internal
  14. */
  15. static _RemoveAndStorePivotPoint(mesh: TransformNode): void;
  16. /**
  17. * @internal
  18. */
  19. static _RestorePivotPoint(mesh: TransformNode): void;
  20. }