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
I am dealing with a C++ legacy class representing a segment, say MySegment.
This class stores the segment's extremes data in a raw dynamic array, in fact it looks like this:
I am dealing with a C++ legacy class representing a segment, say
MySegment
.This class stores the segment's extremes data in a raw dynamic array, in fact it looks like this:
I tried to create the custom geometry view as similar examples show:
Anyway this approach does not work.
Then, I tried to substitute the dynamic allocated array with a static one, so the segment class is now:
In this way the geometry view works fine, so it looks like the issue is only related to raw dynamic arrays.
Is there some trick to deal with such type of structures, or the support for now is missing?
Thank you
The text was updated successfully, but these errors were encountered: