Color bug on export from LDView to POV .. lg_color.inc
2016-01-11, 5:32 (This post was last modified: 2016-01-11, 20:56 by Travis Cobbs.)
2016-01-11, 5:32 (This post was last modified: 2016-01-11, 20:56 by Travis Cobbs.)
Hi,
When I export from LDView to POV, the color 151 VERY LIGHT BLUISH GRAY appears as green in POV ... After some investigation I found the RGB color as written in the lg_color.inc file is 14,94,77 .. which is green .. it should be 230,227,224 .. #E6E3E0 .. instead.
When I export from LDView to POV, the color 151 VERY LIGHT BLUISH GRAY appears as green in POV ... After some investigation I found the RGB color as written in the lg_color.inc file is 14,94,77 .. which is green .. it should be 230,227,224 .. #E6E3E0 .. instead.
Code:
// I changed the code to this
// 151 VERY LIGHT BLUISH GRAY / 208 LIGHT STONE GREY [PEERON]
#declare lg_very_light_bluish_grey = texture {
pigment { color srgb <230,227,224>/255 }
finish { lg_solid_finish }
}
// Code as found
// 151 VERY LIGHT BLUISH GRAY / 208 LIGHT STONE GREY [PEERON]
#declare lg_very_light_bluish_grey = texture {
pigment { color srgb <14,94,77>/255 }
finish { lg_solid_finish }
}