This repository was archived by the owner on Nov 18, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed
Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,6 @@ Name | Type | Description | Notes
77** cameraDirection** | [ ** Direction** ] ( Direction.md ) | |
88** cameraUpVector** | [ ** Direction** ] ( Direction.md ) | |
99** cameraViewPoint** | [ ** Point** ] ( Point.md ) | |
10+ ** bimdataCameraDirection** | [ ** Direction** ] ( Direction.md ) | | [ optional]
1011
1112
Original file line number Diff line number Diff line change 7979 if ( data . hasOwnProperty ( 'camera_view_point' ) ) {
8080 obj [ 'camera_view_point' ] = Point . constructFromObject ( data [ 'camera_view_point' ] ) ;
8181 }
82+ if ( data . hasOwnProperty ( 'bimdata_camera_direction' ) ) {
83+ obj [ 'bimdata_camera_direction' ] = Direction . constructFromObject ( data [ 'bimdata_camera_direction' ] ) ;
84+ }
8285 }
8386 return obj ;
8487 }
99102 * @member {module:model/Point} camera_view_point
100103 */
101104 exports . prototype [ 'camera_view_point' ] = undefined ;
105+ /**
106+ * @member {module:model/Direction} bimdata_camera_direction
107+ */
108+ exports . prototype [ 'bimdata_camera_direction' ] = undefined ;
102109
103110
104111
Original file line number Diff line number Diff line change 8181 //expect(instance).to.be();
8282 } ) ;
8383
84+ it ( 'should have the property bimdataCameraDirection (base name: "bimdata_camera_direction")' , function ( ) {
85+ // uncomment below and update the code to test the property bimdataCameraDirection
86+ //var instance = new bimdata.PerspectiveCamera();
87+ //expect(instance).to.be();
88+ } ) ;
89+
8490 } ) ;
8591
8692} ) ) ;
You can’t perform that action at this time.
0 commit comments