/src/away3d/core/math/PlaneClassification.as

http://github.com/away3d/away3d-core-fp11 · ActionScript · 14 lines · 11 code · 2 blank · 1 comment · 0 complexity · 4215a4d22302c20ab5fd8a149d081c5a MD5 · raw file

  1. package away3d.core.math
  2. {
  3. public class PlaneClassification
  4. {
  5. // "back" is synonymous with "in", but used for planes (back of plane is "inside" a solid volume walled by a plane)
  6. public static const BACK:int = 0;
  7. public static const FRONT:int = 1;
  8. public static const IN:int = 0;
  9. public static const OUT:int = 1;
  10. public static const INTERSECT:int = 2;
  11. }
  12. }