I want to manipulate geometry in Rhino from ETO forms with sliders using python. I can kind of do it, but the geometry looks very choppy as it updates and updating is only truly possible in wireframe mode. I searched for “History” in the RhinoCommon site and found ReplayHistoryResult. And then I found a thread mentioning it.
I thnk ReplayHistoryResult is what I’m looking for. Is it? But, if it is, I can’t figure out how to use it, and I was hoping someone could point me to a tutorial or some sample code showing how to use it.
Here is a sample code I’ve made that has a slider that adjusts a radius of a circle, offsets it and lofts a surface between the two curves. I can scale the first circle (scaling and moving work fine for me). Currently, I delete the offset curve and the surface, then I recreate them. But I would love to see how ReplayHistoryResult would work for something like that. Even just the offset part (I assume it would be similar for the loft).
slider test.py (2.2 KB)