mariolino007

Results 25 comments of mariolino007

thanks for the implentation, it seems to me that the calculation works correctly, the plotbeast(o) command in the various examples instead goes into error : >> plotbeast(o) error: mx_el_eq: nonconformant...

the plot works you are right !!! Thanks With the compliaction I have a problem from the command line.... C:\Program Files\GNU Octave\Octave-8.2.0_large\mingw64\bin>gcc -c -fPIC -pthread -O2 -DM_RELEASE -DO_INTERFACE -I "C:\Program...

thanks, I used "rbeast_mex_compile.m" it generated a mex file of very different size than your repository, as soon as octave calls it for any example octave crashes. Patience I use...

I ask you again for help attached there is a link to a wetrasnsfer inside there is a dataset dataset_time(sec)_vs_value_at_time.mat I would like to analyze it with your program, it...

Thanks, But the angle X1 Y2 Z3 ? Il sab 18 nov 2023, 13:19 tmontaigu ***@***.***> ha scritto: > setting the name is as easy as new_viewport_object.setName("my name") > >...

To define a camera you need an origin point, a second point indicating the direction of view of the camera and a third point indicating which is the up direction...

https://www.cloudcompare.org/doc/wiki/index.php?title=Display%5CCamera_settings

testing this code: ``` import pycc from cccorelib import CCVector3d new_viewport_object = pycc.cc2DViewportObject() new_viewport_parameters = new_viewport_object.getParameters() view_mat = pycc.ccGLMatrixd() view_mat.initFromParameters( phi_rad=0.1, theta_rad=0.2, psi_rad=0.3, t3D=CCVector3d(2028,305,485) ) new_focal_distance = 50 new_viewport_object.setName("camera1") new_viewport_parameters.viewMat...

Now it seems to be working !!! Many thanks !!!

using angles is quite complicated, I am trying to use FromViewDirAndUpDir however I have an unexpected error ? ``` import pycc from cccorelib import CCVector3d forward_vector = CCVector3d(0, 0, -1)...