UNPKG
snapsvg
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.0
0.3.0
0.1.0
JavaScript Vector Library
github.com/adobe-webplatform/Snap.svg
adobe-webplatform/Snap.svg
snapsvg
/
demos
/
snap-ad
/
src
/
js
/
vendor
/
fss
/
Material.js
10 lines
(9 loc)
•
244 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
/** *
@class
Material
*
@author
Matthew Wagerfield */
FSS
.
Material
=
function
(
ambient, diffuse
) {
this
.
ambient
=
new
FSS
.
Color
(ambient ||
'#444444'
);
this
.
diffuse
=
new
FSS
.
Color
(diffuse ||
'#FFFFFF'
);
this
.
slave
=
new
FSS
.
Color
(); };