You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a feature request for the SketchUp live C-API
We are working on something that requires drawing a lot of geometry to the viewport. Our implementation generates the geometry in C but because we can only (safely) draw using the ruby API we have to wrap this in Geom::Point3d objects and wrap those in ruby arrays. After calling the view.draw method I know the implementation of the draw method then has to check the type of each individual object passed.
It would be far faster to do this all in C. I'm proposing the following functionality (Obviously requiring the creation of SUViewRef).
SUViewDraw(view, mode, data);
The text was updated successfully, but these errors were encountered:
This is a feature request for the SketchUp live C-API
We are working on something that requires drawing a lot of geometry to the viewport. Our implementation generates the geometry in C but because we can only (safely) draw using the ruby API we have to wrap this in Geom::Point3d objects and wrap those in ruby arrays. After calling the view.draw method I know the implementation of the draw method then has to check the type of each individual object passed.
It would be far faster to do this all in C. I'm proposing the following functionality (Obviously requiring the creation of SUViewRef).
The text was updated successfully, but these errors were encountered: