Search found 2 matches

by Ayubowan
20 Mar 2018, 15:34
Forum: General questions
Topic: getObjectOrientation issue
Replies: 2
Views: 1493

Re: getObjectOrientation issue

I found the issue myself. It was, as predicted, stupid ! The loop that was wrong : for i=4,6,1 do pos_or[i]=orientation[i] sim.addStatusbarMessage(pos_or[i]) end Loop corrected : for i=4,6,1 do pos_or[i]=orientation[i-3] sim.addStatusbarMessage(pos_or[i]) end
by Ayubowan
20 Mar 2018, 13:35
Forum: General questions
Topic: getObjectOrientation issue
Replies: 2
Views: 1493

getObjectOrientation issue

Hello ! I'm glad to post here, this community seems to be very nice. First of all, sorry about my english, I'm french ;) So, I would like to control the V-rep Quadricopter through Matlab/Simulink. I use shared memory to send the quadricopter position and orientation. But I have an issue : the orient...