Model:
TYPE ~
RECORD [
surfaceColor: ImagerColor.RGB,
ambientReflectionCoefficient: REAL,
diffuseReflectionCoefficient: REAL,
specularReflectionCoefficient: REAL];
Sample: Model ~ [
surfaceColor: [1, 1, 0],
ambientReflectionCoefficient: 1.0,
diffuseReflectionCoefficient: 0.4,
specularReflectionCoefficient: 0.8];