question

Sebastian Hemmann avatar image
0 Likes"
Sebastian Hemmann asked Joerg Vogel edited

Where to find Quick Propertie Functions in the tree?

Hi,

lets say I have the coordinates of a way. That means the start- and the endpoint.

If I want to use Conveyors or AGV Paths to implement this, I can manually set the start- and endpoint in the Quick Properties or I can set variables in Tree under spatial (which means my data has to be translated first). Because I have the choice to do it in the Quick Properties I´m quiet sure the Translation already exists in FlexSim anywhere!? But I can´t find it, because as soon as I click anything else than the object the Quickproperties also change.

Does anybody have a hint for me, what I´ve missed?

Greetings from Germany

Sebastian

FlexSim 17.2.1
conveyoragv pathquick propertiesexplore structure
· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Phil BoBo avatar image
3 Likes"
Phil BoBo answered Sebastian Hemmann commented

"But I can´t find it, because as soon as I click anything else than the object the Quickproperties also change."

You can explore the structure of a Quick Properties panel:

Even if the visible panels in Quick Properties change, you can still view the structure of the panel you explored:

"I´m quiet sure the Translation already exists in FlexSim anywhere!?"

I don't understand what this question is asking. What "Translation" are you talking about?

By exploring the structure of the GUI, you can see what code it is calling. For example, a conveyor's Start position calls this code to apply it:

  1. function_s(up(up(up(c))), "applyDragStart", focus, x, y, z, activedocumentview());

Then you can look at the applyDragStart event function on the node 3 nodes up from that object to see what it does:

  1. int undoId = beginaggregatedundo(c, "Change Conveyor End Spatials");
  2. createundorecord(c, c, UNDO_CUSTOM);
  3. createundorecord(c, param(1), UNDO_CUSTOM);
  4. treenode focus = param(1);
  5. double x = param(2);
  6. double y = param(3);
  7. double z = param(4);
  8. if (up(focus) != model()) {
  9. double oldX = x; double oldY = y; double oldZ = z;
  10. x = vectorprojectx(up(focus), oldX, oldY, oldZ, model());
  11. y = vectorprojecty(up(focus), oldX, oldY, oldZ, model());
  12. z = vectorprojectz(up(focus), oldX, oldY, oldZ, model());
  13. }
  14. function_s(focus, "dragStart", x, y, z, param(5));
  15. createundorecord(c, c, UNDO_CUSTOM);
  16. createundorecord(c, param(1), UNDO_CUSTOM);
  17. endaggregatedundo(c, undoId);
  18.  
  19.  
  20. function_s(param(1), "clearNonLockedPoints");
  21. function_s(param(1), "notifyEdgePointsOnEdgeMoved");
  22. function_s(param(1), "finalizeSpatialChanges");

You can see what function_s() calls are being called on the conveyor to set its start location:

  1. function_s(conveyor, "dragStart", x, y, z, view);
  2. function_s(conveyor, "clearNonLockedPoints");
  3. function_s(conveyor, "notifyEdgePointsOnEdgeMoved");
  4. function_s(conveyor, "finalizeSpatialChanges");

· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.