My favorites | Sign in
Logo
                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package org.papervision3d
{
import org.papervision3d.core.log.PaperLogger;


/**
* The Papervision3D class contains global properties and settings.
*/
public class Papervision3D
{
// ___________________________________________________________________ SETTINGS



/**
* Indicates if the angles are expressed in degrees (true) or radians (false). The default value is true, degrees.
*/
public static var useDEGREES :Boolean = true;

/**
* Indicates if the scales are expressed in percent (true) or from zero to one (false). The default value is false, i.e. units.
*/
public static var usePERCENT :Boolean = false;

/**
*
*/
public static var useRIGHTHANDED :Boolean = false;

// ___________________________________________________________________ STATIC

/**
* Enables engine name to be retrieved at runtime or when reviewing a decompiled swf.
*/
public static var NAME :String = 'Papervision3D';

/**
* Enables version to be retrieved at runtime or when reviewing a decompiled swf.
*/
public static var VERSION :String = '2.0.0';

/**
* Enables version date to be retrieved at runtime or when reviewing a decompiled swf.
*/
public static var DATE :String = 'March 12th, 2009';

/**
* Enables copyright information to be retrieved at runtime or when reviewing a decompiled swf.
*/
public static var AUTHOR :String = '(c) 2006-2008 Copyright by Carlos Ulloa | John Grden | Ralph Hauwert | Tim Knip | Andy Zupko';

/**
* This is the main Logger Controller.
*/
public static var PAPERLOGGER : PaperLogger = PaperLogger.getInstance();


}
}
Show details Hide details

Change log

r894 by neoriley on Mar 12, 2009   Diff
updated to final versioning, removed beta
name "Great White"
Go to: 
Project members, sign in to write a code review

Older revisions

r815 by johnlindquist on Dec 03, 2008   Diff
[docs] general docs and .swc update
and updated date in Papervision3D.as
r721 by johnlindquist on Sep 10, 2008   Diff
updated confusing date string
r718 by r.hauwert on Sep 09, 2008   Diff
Updated date.
All revisions of this file

File info

Size: 1710 bytes, 59 lines
Hosted by Google Code