1 2 3 4 5 6 7 8 9 10 11
import {Colour} from './Colour'; export class Material { constructor( readonly diffuseColour: Colour, readonly diffuseAlbedo: number, readonly specularAlbedo: number, readonly reflectionAlbedo: number, readonly specularExponent: number ) {} }