Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I am currently trying to automate operation based on CAD files, and I find issues to to move the mesh. following script runs well
```
importer = system:createcadimport(0);
CAD_MODEL = importer:loadmodel(filename, 3);
MESH = CAD_MODEL:createmesh();
mesh = root:addmesh(MESH);
mesh:movetoorigin();
```
but when I replace the last line by
```
mesh:move(100, 100, -3.0)
```
I get the error
```
LUA Runtime Error: [string ""]:27: invalid object method or property: move
```
even though it seems to be consistent with
Help | Transformation | Autodesk
Thanks,
Quentin
Solved! Go to Solution.