Inside the CameraViewRenderer (getImage and image getter) there is a reference to this.video:
|
this.context_process.drawImage(this.video, 0, 0, this.vw, this.vh, this.ox, this.oy, this.w, this.h); |
and:
|
this.context_process.drawImage(this.video, 0, 0, this.vw, this.vh, this.ox, this.oy, this.w, this.h); |
but video is not declared or defined in the class, we have only the _video member:
|
public _video: HTMLVideoElement; |
We need to check the correctness of this and if this may lead to some bugs.
Inside the CameraViewRenderer (getImage and image getter) there is a reference to this.video:
ARnft/src/renderers/CameraViewRenderer.ts
Line 122 in 5a66982
and:
ARnft/src/renderers/CameraViewRenderer.ts
Line 138 in 5a66982
but video is not declared or defined in the class, we have only the _video member:
ARnft/src/renderers/CameraViewRenderer.ts
Line 55 in 5a66982
We need to check the correctness of this and if this may lead to some bugs.