aboutsummaryrefslogtreecommitdiff
path: root/src/Material.ts
blob: 6f199a3c4325d549193199b5e98aa5828520ee53 (plain)
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
  ) {}
}