Skip to content

Commit

Permalink
doc(View): document View properties
Browse files Browse the repository at this point in the history
  • Loading branch information
jailln committed Oct 11, 2023
1 parent 3900c11 commit 428173b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/Core/View.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,13 @@ const viewers = [];
let screenMeters;

/**
*
* @property {HTMLElement} domElement - Thhe domElement holding the canvas where the view is displayed
* @property {String} referenceCrs - The coordinate reference system of the view
* @property {MainLoop} mainLoop - itowns mainloop scheduling the operations
* @property {THREE.Scene} scene - threejs scene of the view
* @property {Camera} camera - itowns camera (that holds a threejs camera that is directly accessible with View.camera3D)
* @property {THREE.Camera} camera3D - threejs camera that is stored in itowns camera
* @property {THREE.WebGLRenderer} renderer - threejs webglrenderer rendering this view
*/
class View extends THREE.EventDispatcher {
#layers = [];
Expand Down

0 comments on commit 428173b

Please sign in to comment.