Hej Travis,
I again also looked into the POVRay export by LDview and noticed that it always adds a hardcoded line
Can this be changed to
please? That would allow me to suppress that background statement in the custom preamble include via #undef LDXBgR
I again also looked into the POVRay export by LDview and noticed that it always adds a hardcoded line
Code:
background { color rgb <LDXBgR,LDXBgG,LDXBgB> }
Can this be changed to
Code:
#ifdef(LDXBgR)
#ifdef(LDXBgG)
#ifdef(LDXBgB)
background { color rgb <LDXBgR,LDXBgG,LDXBgB> }
#end
#end
#end
please? That would allow me to suppress that background statement in the custom preamble include via #undef LDXBgR