@iiif/3d-manifesto-dev
Version:
IIIF Presentation API utility library for client and server with 3D extension
19 lines (18 loc) • 578 B
TypeScript
import { Transform } from "./internal";
export declare class RotateTransform extends Transform {
constructor(jsonld?: any);
/**
* Returns an object with x,y,z attributes whose values are
* a counter-clockwise rotation in degrees about the fixed coordinate
* system axes.
*
* @returns object
**/
getRotation(): object;
/**
* accessor Rotation is an object with x,y,z attributes whose values are
* a counter-clockwise rotation in degrees about the fixed coordinate
* system axes.
**/
get Rotation(): object;
}