@flashport/flashport
Version:
FlashPort is a TypeScript 2D graphics library that largely replicates the Flash ActionScript 3.0 library
14 lines (13 loc) • 411 B
TypeScript
import { Point } from "./Point";
import { Matrix3D } from "./Matrix3D";
export declare class PerspectiveProjection extends Object {
constructor();
private ctor;
get fieldOfView(): number;
set fieldOfView(param1: number);
get projectionCenter(): Point;
set projectionCenter(param1: Point);
get focalLength(): number;
set focalLength(param1: number);
toMatrix3D(): Matrix3D;
}