40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
color = lib.color(1,.8,0.1);
};
calcium = {
name = 'calcium', sym = 'Ca', n = 20; density = 1.55;
metal = true;
color = lib.color(1,1,0.7);
};
aluminum = {
name = 'aluminum', sym = 'Al', n = 13; density = 2.7;
metal = true;
color = lib.color(0.9,.95,1);
};
iron = {
name = 'iron', sym = 'Fe', n = 26; density = 7.874;
metal = true;
color = lib.color(.3,.3,.3);
};
copper = {
|
|
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
color = lib.color(1,.8,0.1);
};
calcium = {
name = 'calcium', sym = 'Ca', n = 20; density = 1.55;
metal = true;
color = lib.color(1,1,0.7);
};
magnesium = {
name = 'magnesium', sym = 'Mg', n = 12, density = 1.738;
metal = true;
color = lib.color(0.7, 0.7, 0.7);
};
aluminum = {
name = 'aluminum', sym = 'Al', n = 13; density = 2.7;
metal = true;
color = lib.color(0.5,.55,.6);
};
iron = {
name = 'iron', sym = 'Fe', n = 26; density = 7.874;
metal = true;
color = lib.color(.3,.3,.3);
};
copper = {
|