Talk:Tutorial KinematicController

From FreeCAD Documentation
Revision as of 16:51, 13 May 2022 by FBXL5 (talk | contribs) (Created page with "Now that the tutorial is finished and proofread, I found something to improve: # {{Incode|Label.endswith("Driver")}} is smarter than {{Incode|Label[-6:] }}=={{Incode| "Driver"...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Now that the tutorial is finished and proofread, I found something to improve:

  1. Label.endswith("Driver") is smarter than Label[-6:] == "Driver".
  2. If we hand over a driver object rather than a drivers list, we can open several instances of the controller, but:
  • We must use the exec_() method only once to launch all created instances.
  • If we use the exec_() method with the last created instances, this one gets the "mighty" close button; it closes all controller windows. All other close buttons only close the window that they belong to.


Tutorial updated.