UNPKG

@plurid/plurid-react

Version:

React implementation of Plurid to explore the web in three dimensions

18 lines (17 loc) 785 B
import { PluridPlane, TreePlane, PluridApplicationView, PluridPartialConfiguration } from '@plurid/plurid-data'; import { PluridReactComponent } from "../../../data/interfaces"; export declare const computeApplication: (planes: PluridPlane<PluridReactComponent>[] | undefined, configuration: PluridPartialConfiguration | undefined, view: PluridApplicationView | undefined, origin?: string) => { computedTree: TreePlane[]; appConfiguration: import("@plurid/plurid-data").PluridConfiguration; }; export declare const computePlaneLocation: (plane: TreePlane) => { transform: { translationX: number; translationY: number; translationZ: number; rotationX: number; rotationY: number; scale: number; }; matrix3d: string; };