How can I access the perspective camera's projection matrix directly and change one or more of the 16 values?
I tried the code bellow with and without .updateProjectionMatrix() and it doesn't work, probably it is overiden by an internal function:
cameraPersp.projectionMatrix.elements.set =
(a,b,c,d,
e,f,g,h,
i,j,k,l,
m,n,o,p);
cameraPersp.updateProjectionMatrix();
Also, I have no idea if it can be multiplied, added etc using .set (lack of documentation) -it doesn't raise an error though.