I want to visualize the result of RTK with VTK. However there is a definition conflicts in vtkMath.h and lp_lib.h. The FULL name is defined repeatedly in both header files. What should I do about it?
It looks like FULL
is an enum
variant in VTK. I would include it first so that RTK’s (I’m assuming) #define FULL …
doesn’t mess up the syntax. Ideally RTK would not define such un-namespaced symbols.
OK, I see.