Utils3D.hx 408 B

1234567
  1. package flash.geom;
  2. @:require(flash10) extern class Utils3D {
  3. static function pointTowards(percent : Float, mat : Matrix3D, pos : Vector3D, ?at : Vector3D, ?up : Vector3D) : Matrix3D;
  4. static function projectVector(m : Matrix3D, v : Vector3D) : Vector3D;
  5. static function projectVectors(m : Matrix3D, verts : flash.Vector<Float>, projectedVerts : flash.Vector<Float>, uvts : flash.Vector<Float>) : Void;
  6. }