I want to put control point every 5m on the AGV network without manually dragging 100's of them on the network. Is there a way I could do this using flexscript?
I want to put control point every 5m on the AGV network without manually dragging 100's of them on the network. Is there a way I could do this using flexscript?
Hi @Jay K9, was Kavika F's answer helpful? If so, please click the "Accept" button at the bottom of their answer. Or if you still have questions, add a comment and we'll continue the conversation.
If we haven't heard back from you within 3 business days we'll auto-accept an answer, but you can always comment back to reopen your question.
Hey @Jay K9, you could check out this post on a Kiva System Demo Model for reference. In the model, they have a User Command called "CreatePathGrid" which makes the AGV Paths and Control Point.
You'll see these commands in the code, but I'll point them out here. You'll want to programatically create ControlPoints using the Object.create() command.
Object cp = Object.create("AGV::ControlPoint");
Then you can set properties - like location - for that cp. If you define an x and y in a grid, you could do something like this:
cp.setProperty("Location", Vec3(x, y, 0));
Finally, once you've made all those Control Points, you'll want to call "refreshAllPathLinks" on one of the paths in your model. If you made a path like this:
Object path = Object.create("AGV::StraightPath");
You can call this at the end of your script:
function_s(path, "refreshAllPathLinks");
Hope this helps.
19 People are following this question.
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved