@iiif/3d-manifesto-dev
Version:
IIIF Presentation API utility library for client and server with 3D extension
15 lines (14 loc) • 432 B
TypeScript
import { JSONLDResource } from "./internal";
import { Vector3 } from "threejs-math";
export declare class PointSelector extends JSONLDResource {
isPointSelector: boolean;
constructor(jsonld: any);
/**
@returns the 3D coordinates of the point as a Vector3 instance.
**/
getLocation(): Vector3;
/**
@returns the 3D coordinates of the point as a Vector3 instance.
**/
get Location(): Vector3;
}