Page 1 of 1

Importing a .stl file from script

Posted: 13 Sep 2018, 14:18
by darkPaladin
Hi there,

I've been trying to import an .stl file to V-rep by using scripts in Lua with no success. The function that I'm using is the following one:

sim.importShape(4,'DCT.stl',0,0.000001,1)

After I run my simulation the imported shape from the .stl file appears in the 'Scene hierarchy' as 'Shape' but it's not shown in the graphics window. Whenever I try to change the position of it the initial position in x, y and z is set to 'nan'. I have tried by changing those values to any other coordinates and still is not showing.

Just for your information I'm using V-rep pro edu 3.5 in Ubuntu 18

I was wondering if anyone of you could help me with this issue please.

Thanks,

Re: Importing a .stl file from script

Posted: 21 Sep 2018, 10:16
by coppelia
Hello,

this can happen if your STL file is ill-defined. Often an imported shape is also not visible if the scale of the shape is very large or very small. Did you try to convert to STL file to another format (e.g. OBJ) and import it again?
What happens if you import the STL shape via the menu and not programmatically? Are you sure your STL is binary STL and not ASCII STL?

Cheers