PerspectiveProjection.hx 221 B

1234567891011
  1. package flash.geom;
  2. extern class PerspectiveProjection {
  3. var projectionCenter : Point;
  4. var fieldOfView : Float;
  5. var focalLength(default,null) : Float;
  6. function new() : Void;
  7. function toMatrix3D() : Matrix3D;
  8. }