Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

KE Attribute in MTL Files

Tags:

3d

wavefront

.obj

I have a .mtl file next to my .obj file which specifies the materials for the object. Im trying to create a parser but dont know what the "Ke" attribute means. e.g:

Ka 0.78 0.78 0.78 
Kd 0.78 0.78 0.78
Ks 0 0 0
Ke 17 12 4 # What does this line mean?

Thanks :)

like image 493
juliusmh Avatar asked May 01 '16 08:05

juliusmh


1 Answers

Ke stands for emissive coeficient. It goes together with ambient, diffuse and specular and represents the amount of light emitted by the material. If you also have a defined emission color the material will irradiate light.

like image 80
Craveiro Avatar answered Oct 25 '22 04:10

Craveiro