diff options
Diffstat (limited to 'src/Material.ts')
| -rw-r--r-- | src/Material.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Material.ts b/src/Material.ts new file mode 100644 index 0000000..6f199a3 --- /dev/null +++ b/src/Material.ts @@ -0,0 +1,11 @@ +import {Colour} from './Colour'; + +export class Material { + constructor( + readonly diffuseColour: Colour, + readonly diffuseAlbedo: number, + readonly specularAlbedo: number, + readonly reflectionAlbedo: number, + readonly specularExponent: number + ) {} +} |