PerspectiveProjection.hx 221 B

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