123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- ---
- extends: http://vwf.example.com/node3.vwf
- properties:
-
-
-
-
- far:
- set: |
- if ( value > 0 && value > this.near ) {
- this.far = value;
- }
- value: 1000.0
-
-
-
-
- near:
- set: |
- if ( value > 0 && value < this.far ) {
- this.near = value;
- }
- value: 0.1
-
-
-
-
- fovy:
- value: 35
- set: |
- if ( value > 0 ) {
- this.fovy = value;
- }
-
-
-
-
- aspect:
-
-
-
-
- cameraType:
- set: |
- switch ( value ) {
- case 'perspective':
- case 'orthographic':
- this.cameraType = value;
- break;
- }
- value: "perspective"
-
-
-
-
- speed: 2.0
-
-
-
-
- worldBoundingBox:
- get: |
- return null;
- value: null
|