Search found 1016 matches

by fferri
22 Jul 2022, 09:57
Forum: General questions
Topic: Visual Studio or Visual Studio Code
Replies: 4
Views: 705

Re: Visual Studio or Visual Studio Code

It seems Visual Studio Code can be used for C/C++ development so you should be able to develop C/C++ remote API clients also with Visual Studio Code
by fferri
22 Jul 2022, 07:57
Forum: Bug reports
Topic: MacOS lacks zmqRemoteAPI, headless library
Replies: 2
Views: 954

Re: MacOS lacks zmqRemoteAPI, headless library

Why do you need a headless library on macOS? What are you trying to do?

There is also a -h command-line switch to run in headless mode.
by fferri
12 Jul 2022, 09:04
Forum: General questions
Topic: how to switch the gpu used by coppeliaSim
Replies: 1
Views: 382

Re: how to switch the gpu used by coppeliaSim

Nvidia Control Panel > Manage 3d settings > Select preferred graphics processor, or something similar.
by fferri
07 Jul 2022, 08:57
Forum: General questions
Topic: How to show pointcloud msg from ROS
Replies: 9
Views: 1425

Re: How to show pointcloud msg from ROS

sensor_msgs/PointCloud2 is a binary format. The data field is a sequence of bytes (in CoppeliaSim that may come as uint8 array or a string, depending on the subscriber settings ). Information to decode it is contained in the other fields of the message ( is_bigendian , fields , point_step , row_ste...
by fferri
27 Jun 2022, 05:22
Forum: General questions
Topic: Record Velocity of Object During Simulation
Replies: 2
Views: 555

Re: Record Velocity of Object During Simulation

Graphs can record the velocity of objects.
by fferri
27 Jun 2022, 05:19
Forum: General questions
Topic: The world frame in CoppeliaSim
Replies: 2
Views: 840

Re: The world frame in CoppeliaSim

You can add a 'dummy' object in the scene with the desired orientation.

Then you would use its handle when you want to refer to "world" instead of -1, e.g. when passing the parameter relativeToObjectHandle to sim.getObjectPosition()
by fferri
14 Jun 2022, 16:21
Forum: Bug reports
Topic: simExtROS2 with ros2 humble
Replies: 3
Views: 1835

Re: simExtROS2 with ros2 humble

Support for Humble Hawksbill has been added.

You can grab the latest git version from https://github.com/CoppeliaRobotics/simExtROS2 master branch.
by fferri
06 Jun 2022, 12:44
Forum: General questions
Topic: Moving an Object with Lua Code
Replies: 15
Views: 3416

Re: Moving an Object with Lua Code

Luis Nieto wrote: 06 Jun 2022, 09:13

Code: Select all

    start = thingpose
    finish = thingpose
    finish[2] = thingpose[2] + 0.5
You can't do that in Lua. It doesn't do what you want in this case.

To understand why, try to print the values of start and finish.

Additional reading: https://stackoverflow.com/questions/53990332
by fferri
06 Jun 2022, 12:25
Forum: Bug reports
Topic: simExtROS2 with ros2 humble
Replies: 3
Views: 1835

Re: simExtROS2 with ros2 humble

Thanks for reporting. Support for the "Humble Hawksbill" LTS release will be added in future.