Hi,
I'm trying to resize a robot in my model using a script. I've tried to use the method that i generally use for all the objects:
Object obj = Model.find("Robot1"); double x = 0.5; double y = 0.5; double z = 0.5; obj.setSize(x, y, z);
This operation doesn't work for the robot (the values in the properties are changed but the real robot dimensions in the model aren't).There is a solution for this problem?