DIR : /home/kozerus/public_html/cropex/node/node_modules/recharts/types/container/Surface.d.ts
/home/kozerus/public_html/cropex/node/node_modules/recharts/types/container
/**
* @fileOverview Surface
*/
import React, { ReactNode, CSSProperties, SVGProps } from 'react';
interface SurfaceProps {
width: number;
height: number;
viewBox?: {
x?: number;
y?: number;
width?: number;
height?: number;
};
className?: string;
style?: CSSProperties;
children?: ReactNode;
title?: string;
desc?: string;
}
export type Props = Omit<SVGProps<SVGSVGElement>, 'viewBox'> & SurfaceProps;
export declare function Surface(props: Props): React.JSX.Element;
export {};
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer