-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created enum for lens coordinate system options
- Loading branch information
1 parent
320c1cf
commit 3858115
Showing
2 changed files
with
36 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package away3d.cameras.lenses | ||
{ | ||
/** | ||
* Provides constant values for camera lens projection options use the the <code>coordinateSystem</code> property | ||
* | ||
* @see away3d.cameras.lenses.PerspectiveLens#coordinateSystem | ||
*/ | ||
public class CoordinateSystem | ||
{ | ||
/** | ||
* Default option, projects to a left-handed coordinate system | ||
*/ | ||
public static const LEFT_HANDED:uint = 0; | ||
|
||
/** | ||
* Projects to a right-handed coordinate system | ||
*/ | ||
public static const RIGHT_HANDED:uint = 1; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters