Search found 1017 matches

by fferri
02 Mar 2020, 11:33
Forum: General questions
Topic: Support with Demo3d/Emulate3d
Replies: 3
Views: 1690

Re: Support with Demo3d/Emulate3d

The location is the same as the location of the main application.

See also: Add-ons
by fferri
02 Mar 2020, 11:27
Forum: General questions
Topic: ROS service not working
Replies: 6
Views: 3202

Re: ROS service not working

Use the following: catkin clean sim_ros_interface catkin build sim_ros_interface --verbose and check for WARNING messages. On my system I get WARNING: bad srv: std_srvs/String and the command rossrv show std_srvs/String says: Unknown srv type [std_srvs/String]: Cannot locate message [String] in pack...
by fferri
28 Feb 2020, 15:17
Forum: General questions
Topic: ROS service not working
Replies: 6
Views: 3202

Re: ROS service not working

You need to copy the newly built plugin to the CoppeliaSim directory, overwriting the previous one.

You don't need to modify CMakeLists.txt, simply copy devel/lib/libsimExtROSInterface.so to the CoppeliaSim root directory.

You are probably still using the old plugin.
by fferri
27 Feb 2020, 16:27
Forum: General questions
Topic: object creation
Replies: 4
Views: 1261

Re: object creation

Replace while true with while sim.getSimulationState()~=sim.simulation_advancing_abouttostop
by fferri
27 Feb 2020, 15:03
Forum: General questions
Topic: Joint breaking problem
Replies: 9
Views: 3072

Re: Joint breaking problem

That depends on the many properties of the joints you have set.

Make sure to read all the design considerations in Designing dynamic simulations
by fferri
27 Feb 2020, 14:58
Forum: General questions
Topic: Support with Demo3d/Emulate3d
Replies: 3
Views: 1690

Re: Support with Demo3d/Emulate3d

CoppeliaSim can export to a variety of formats, but this will work only for the model/meshes/textures.

If you can't find a suitable export format you can always write your won exporter. Have a look at simAddOnFunc_minimalisticExporter.lua.
by fferri
27 Feb 2020, 14:56
Forum: General questions
Topic: setup connection with vrep via 2 clients simultaneously
Replies: 6
Views: 1750

Re: setup connection with vrep via 2 clients simultaneously

Can you be more clear in what you want to achieve?

Do you mean two remote API clients?
by fferri
27 Feb 2020, 14:53
Forum: General questions
Topic: object creation
Replies: 4
Views: 1261

Re: object creation

Is that a non-threaded child script?

Maybe use a threaded script if you need to use sim.wait and continue the simulation meanwhile.

Recommended reading: Child scripts
by fferri
27 Feb 2020, 14:47
Forum: General questions
Topic: Change Scene Hierarchy order
Replies: 1
Views: 953

Re: Change Scene Hierarchy order

I don't think the order between sibling items can be set by the user. Only parent/child can be changed. Current ordering appears to be undefined (perhaps is dependent on the underlying data structures). Lexicographic order might make sense for scene trees with a large branching factor (although I th...
by fferri
27 Feb 2020, 14:40
Forum: General questions
Topic: ROS service not working
Replies: 6
Views: 3202

Re: ROS service not working

You need to add std_msgs/String to meta/services.txt and recompile the plugin, as the message says.