Hello, Rhino 9 development is progressing well, and to be ready for its release with our plugins, I would like to know if a C++ 9 SDK is already available for Windows, as I know there is one for Mac users. If not, do you know if an SDK will be available before the release of Rhino 9?
Thank you,
Guillaume from the Rhinoterrain dev team
There will certainly be a Rhino 9 C++ SDK made available in the coming months. The Mac SDK is a work in process and isn’t something you should build a shippable plugin against yet.
Our goal is to not break to C++ SDK for 9 so your plug-in built against the V8 C++ SDK should continue to work in 9.
As far as when we will have a v9 C++ SDK; this will probably be in a month or two. We are getting close to a phase we call SDK Freeze which requires us to review what we’ve added so far in the WIP with the goal of having an SDK we can ship that we won’t break going forward. Once we have gone through this review and hit SDK freeze we will be shipping a v9 C++ SDK
Thank you very much for the information! I have some customers using my Plugin already with the WIP, so there is compatibility as you describe it.
One thing I noticed: In the WIP there is a renewed Zebra (we discussed it a while ago), great stuff. Since I use a few calls like pipeline**.DrawZebraPreview(…)** it would be very useful to have API access to some of the new parameters as well.
Currently they are in CRhinoZebraAnalysisSettings, would be good if it would contain the new parameters.
Yes, you will have access to these new settings. There will be a new CRhinoIsoDrawEffect class in the C++ SDK that you can twiddle a bunch of new settings on. You can also apply all of these settings to the CRhinoZebraAnalysisSettings if you want. As you can see, we still need to add comments to the code