-
Thanks for PyRx. Once the collection seems useful one might expose it on a public repo for others to use. Required is then to also document the usage of commands. Undertaking my first steps I had once started out with BRXSDK, but I do not consider this being modular enough, since one has to update on several occasions once a new command is added. What would be a useful modular setup to thrive for? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
In C++, I keep all my commands in one file. Usually, the commands don’t have any implementation, they are just used to forward the call to another function or class. Usually, the file is named acrxEntryPoint, the layout is almost exactly like the template. After that I usually break out the reusable stuff into their own files. Spaghetti code is almost always inevitable, I just try to minimize it. Over the years, the stuff I drag around the most is jigs, I have a DragJig, RotateJig, ScaleJig and a DrawJig that are always handy |
Beta Was this translation helpful? Give feedback.
Just stumbled over the sample by @gswifort and take this as an answer.