Hi all.
I have submitted two patches to resolve the above issue.
Both the patches resolve this. Also, they are put in the same ticket. (I
believe that is the right way of doing it)
https://sourceforge.net/p/brlcad/patches/278/
So either of them can be chosen.
Best,
Raj
hi all,
The last argument in mk_metaball(..) defined in src/libwdb/wdb.c looks
erroneous to me
it reads fastf_t *verts[5]
As per [1] this means verts is a 5 array of pointers of type floats.
Instead i think this should be fastf_t (*verts)[5] which would mean verts
is a pointer to 5 array of fas