Search found 5729 matches

by coppelia
11 Apr 2024, 14:28
Forum: Feature requests
Topic: I suggest the Drawing Curve should be reversed when screenshooting.
Replies: 2
Views: 212

Re: I suggest the Drawing Curve should be reversed when screenshooting.

There was a start to offer the same functionality via shapes... hopefully that will make it into the next release. Here the related code: function sim.addDrawingObject(type, size, duplicateTolerance, parentHandle, maxItems, color) if not _S.realDrawingObjects then _S.realDrawingObjects = {} _S.realD...
by coppelia
08 Apr 2024, 15:29
Forum: General questions
Topic: Cartesian Robot Script
Replies: 3
Views: 1299

Re: Cartesian Robot Script

Hello,

the best is probably to first follow this tutorial to get a general idea.

Cheers
by coppelia
08 Apr 2024, 15:26
Forum: General questions
Topic: How to output images from coppeliasim?
Replies: 1
Views: 74

Re: How to output images from coppeliasim?

Hello,

have a look at the screenshot add-on [Menu bar > Modules > Tools > screenshot tool]

Cheers
by coppelia
08 Apr 2024, 15:24
Forum: General questions
Topic: Python Regular API Joint Force is None
Replies: 3
Views: 564

Re: Python Regular API Joint Force is None

Starting with CoppeliaSim V4.7, sim.getJointForce will simply return 0.0 instead of previously None.

Cheers
by coppelia
08 Apr 2024, 15:21
Forum: General questions
Topic: "Simulation step" and "Simulation time"
Replies: 4
Views: 781

Re: "Simulation step" and "Simulation time"

You can adjust the simulation step and the dynamics step individually, according to your needs. By default the simulation step is 50ms, and the dynamics step is 5ms. If you need to control a dynamic aspect of a simulation in each dynamics step, then you should do that inside of a joint callback func...
by coppelia
08 Apr 2024, 15:14
Forum: General questions
Topic: CoppeliaSim for Surface cleaning
Replies: 4
Views: 137

Re: CoppeliaSim for Surface cleaning

Hello,

not sure if I understand exactly what you mean... but why not give the tool a friction of zero?

Cheers
by coppelia
08 Apr 2024, 15:12
Forum: Bug reports
Topic: repeated exception warning while using remote API
Replies: 1
Views: 200

Re: repeated exception warning while using remote API

Hello,

I am not sure this is directly related to CoppeliaSim or its ZeroMQ remote API. By googling for that error, you'll find a few hints to what might be causing this.

Cheers
by coppelia
04 Apr 2024, 14:21
Forum: Feature requests
Topic: VHACD -> CoACD?
Replies: 1
Views: 77

Re: VHACD -> CoACD?

Hello, you can already use CoACD with following Python script (e.g. as a CoppeliaSim embedded script): # python import numpy as np import coacd def getConvexDecomposed(shapeHandle): p = sim.getObjectPose(shapeHandle) vertices, indices, normals = sim.getShapeMesh(shapeHandle) vertices = sim.multiplyV...
by coppelia
03 Apr 2024, 16:19
Forum: General questions
Topic: Attach a gripper to a robotic arm
Replies: 8
Views: 7474

Re: Attach a gripper to a robotic arm

Hello, at some point, you need to decide about where the attachment frames (or poses) are, relative to your end-effector, and relative to your tools. There is no need for physical objects (e.g. dummies) acting as attachment frames, you could simply have that info in some data base. But that gets mes...
by coppelia
03 Apr 2024, 08:58
Forum: Bug reports
Topic: ZMQ remote API failing after the same amount of runs of a simulation
Replies: 7
Views: 163

Re: ZMQ remote API failing after the same amount of runs of a simulation

Hello again,

the bug has been identified and will be fixed for CoppeliaSim V4.7, out within a few weeks.
Thanks for reporting it!

Cheers