/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
- package away3d.core.math
- {
-
- public class PlaneClassification
- {
- // "back" is synonymous with "in", but used for planes (back of plane is "inside" a solid volume walled by a plane)
- public static const BACK:int = 0;
- public static const FRONT:int = 1;
-
- public static const IN:int = 0;
- public static const OUT:int = 1;
- public static const INTERSECT:int = 2;
- }
- }