File: stones1.inc

package info (click to toggle)
povray 1%3A3.7.0.8-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 146,780 kB
  • sloc: cpp: 845,005; ansic: 122,118; sh: 34,206; pascal: 6,420; asm: 3,355; ada: 1,681; makefile: 1,387; cs: 879; awk: 590; perl: 245; xml: 95
file content (1663 lines) | stat: -rw-r--r-- 59,763 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
// This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License.
// To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or send a
// letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.

//    Persistence of Vision Ray Tracer version 3.5 Include File
//    File: stones1.inc
//    Last updated: 2001.7.24
//    Description:

#ifndef(Stones1_Inc_Temp)
#declare Stones1_Inc_Temp = version;
#version 3.5;

/*     T_Stone1 through T_Stone24 created by Mike Miller, 1992

    Contains declared texture statements defining a variety of
    stone granite & marble textures. Most use the granite texture.
    Turbulence has no effect on granite, but turbulence is stated
    before the color map for convenience of switching to marble, which
    does need a turbulence to swirl the color. I tried to avoid using
    a random dither, but I find it helps create a subtle grain & can
    spark lost colors in the map. On multi-layered texture, try a float
    of about 0.05 on the first texture.

    Final Note: I would not "INCLUDE" this whole data file into a scene
                file if only one or two of these textures were being
                used...There are too many declares being used.

    -----------------------------------------------------------------------
    The textures T_Grnt0-T_Grnt29, T_Grnt0A-T_Grnt24A and Crack1-Crack4 are
    "building blocks" that are used to create the final "usable" textures,
    T_Stone1 - T_Stone24 (and other textures that *you* design, of course!)

    INDEX:

            T_Grnt0  - T_Grnt29   color maps (generally) contain no transmit values
            ------------------------------
                T_Grnt0  - Gray/Tan with Rose.
                T_Grnt1  - Creamy Whites with Yellow & Light Gray.
                T_Grnt2  - Deep Cream with Light Rose, Yellow, Orchid, & Tan.
                T_Grnt3  - Warm tans olive & light rose with cream.
                T_Grnt4  - Orchid, Sand & Mauve.
                T_Grnt5  - Medium Mauve Med.Rose & Deep Cream.
                T_Grnt6  - Med. Orchid, Olive & Dark Tan "mud pie".
                T_Grnt7  - Dark Orchid, Olive & Dark Putty.
                T_Grnt8  - Rose & Light Cream Yellows
                T_Grnt9  - Light Steely Grays
                T_Grnt10 - Gray Creams & Lavender Tans
                T_Grnt11 - Creams & Grays  Kahki
                T_Grnt12 - Tan Cream & Red Rose
                T_Grnt13 - Cream Rose Orange
                T_Grnt14 - Cream Rose & Light Moss w/Light Violet
                T_Grnt15 - Black with subtle chroma
                T_Grnt16 - White Cream & Peach
                T_Grnt17 - Bug Juice & Green
                T_Grnt18 - Rose & Creamy Yellow
                T_Grnt19 - Gray Marble with White feather Viens
                T_Grnt20 - White Marble with Gray feather Viens
                T_Grnt21 - Green Jade
                T_Grnt22 - Clear with White feather Viens (has some transparency)
                T_Grnt23 - Light Tan to Mauve
                T_Grnt24 - Light Grays
                T_Grnt25 - Moss Greens & Tan
                T_Grnt26 - Salmon with thin Green Viens
                T_Grnt27 - Dark Green & Browns
                T_Grnt28 - Red Swirl
                T_Grnt29 - White, Tan, w/ thin Red Viens

            T_Grnt0A - T_Grnt24A  color maps containing transmit
            ------------------------------
                T_Grnt0a  - Translucent T_Grnt0
                T_Grnt1a  - Translucent T_Grnt1
                T_Grnt2a  - Translucent T_Grnt2
                T_Grnt3a  - Translucent T_Grnt3
                T_Grnt4a  - Translucent T_Grnt4
                T_Grnt5a  - Translucent T_Grnt5
                T_Grnt6a  - Translucent T_Grnt6
                T_Grnt7a  - Translucent T_Grnt7
                T_Grnt8a  - Aqua Tints
                T_Grnt9a  - Transmit Creams With Cracks
                T_Grnt10a - Transmit Cream Rose & light yellow
                T_Grnt11a - Transmit Light Grays
                T_Grnt12a - Transmit Creams & Tans
                T_Grnt13a - Transmit Creams & Grays
                T_Grnt14a - Cream Rose & light moss
                T_Grnt15a - Transmit Sand & light Orange
                T_Grnt16a - Cream Rose & light moss (again?)
                T_Grnt17a - ???
                T_Grnt18a - ???
                T_Grnt19a - Gray Marble with White feather Viens with Transmit
                T_Grnt20a - White Feather Viens
                T_Grnt21a - Thin White Feather Viens
                T_Grnt22a - ???
                T_Grnt23a - Transparent Green Moss
                T_Grnt24a - ???

            T_Crack1 - T_Crack4   clear with an thin opaque band for T_Cracks
            ------------------------------
                T_Crack1 - T_Crack & Red Overtint
                T_Crack2 - Translucent Dark T_Cracks
                T_Crack3 - Overtint Green w/ Black T_Cracks
                T_Crack4 - Overtint w/ White T_Crack

            OTHERS

            Stone1 - Stone24  complete texture statements - edit to your
                              scene & lighting situations.
            ------------------------------
                T_Stone1 - Deep Rose & Green Marble with large White Swirls
                T_Stone2 - Light Greenish Tan Marble with Agate style veining
                T_Stone3 - Rose & Yellow Marble with fog white veining
                T_Stone4 - Tan Marble with Rose patches
                T_Stone5 - White Cream Marble with Pink veining
                T_Stone6 - Rose & Yellow Cream Marble
                T_Stone7 - Light Coffee Marble with darker patches
                T_Stone8 - Gray Granite with white patches
                T_Stone9 - White & Light Blue Marble with light violets
                T_Stone10- Dark Brown & Tan swirl Granite with gray undertones
                T_Stone11- Rose & White Marble with dark tan swirl
                T_Stone12- White & Pinkish Tan Marble
                T_Stone13- Medium Gray Blue Marble
                T_Stone14- Tan & Olive Marble with gray white veins
                T_Stone15- Deep Gray Marble with white veining
                T_Stone16- Peach & Yellow Marble with white veining
                T_Stone17- White Marble with gray veining
                T_Stone18- Green Jade with white veining
                T_Stone19- Peach Granite with white patches & green trim
                T_Stone20- Brown & Olive Marble with white veining
                T_Stone21- Red Marble with gray & white veining
                T_Stone22- Dark Tan Marble with gray & white veining
                T_Stone23- Peach & Cream Marble with orange veining
                T_Stone24- Green & Tan Moss Marble

    -----------------------------------------------------------------------
    This file was modified July 2001 to work as it should with POV-Ray 3.5,
all filters being changed to transmits.
*/

#ifdef(View_POV_Include_Stack)
    #debug "including stones1.inc\n"
#end

//--------- Gray Tan with Rose
#declare T_Grnt0 =
texture {
pigment
 {granite
  turbulence 0.4
  color_map
   {[0.000, 0.153   color rgbt <0.729, 0.502, 0.451, 0.000>
                    color rgbt <0.769, 0.686, 0.592, 0.000>]
    [0.153, 0.398   color rgbt <0.769, 0.686, 0.592, 0.000>
                    color rgbt <0.843, 0.753, 0.718, 0.000>]
    [0.398, 0.559   color rgbt <0.843, 0.753, 0.718, 0.000>
                    color rgbt <0.780, 0.667, 0.561, 0.000>]
    [0.559, 0.729   color rgbt <0.780, 0.667, 0.561, 0.000>
                    color rgbt <0.741, 0.659, 0.576, 0.000>]
    [0.729, 1.001   color rgbt <0.741, 0.659, 0.576, 0.000>
                    color rgbt <0.729, 0.502, 0.451, 0.000>]
   }
 }
 }

//----- Creamy Whites with yellow & light gray
#declare T_Grnt1 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.212   color rgbt <0.898, 0.898, 0.851, 0.000>
                    color rgbt <0.969, 0.980, 0.875, 0.000>]
    [0.212, 0.424   color rgbt <0.969, 0.980, 0.875, 0.000>
                    color rgbt <0.859, 0.859, 0.859, 0.000>]
    [0.424, 0.627   color rgbt <0.859, 0.859, 0.859, 0.000>
                    color rgbt <0.992, 0.922, 0.659, 0.000>]
    [0.627, 0.881   color rgbt <0.992, 0.922, 0.659, 0.000>
                    color rgbt <0.937, 0.965, 0.902, 0.000>]
    [0.881, 1.001   color rgbt <0.937, 0.965, 0.902, 0.000>
                    color rgbt <0.898, 0.898, 0.851, 0.000>]
   }
 }
 }

//------- Deep Cream with light rose, yellow orchid & tan
#declare T_Grnt2 =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.178   color rgbt <0.863, 0.757, 0.596, 0.000>
                    color rgbt <0.925, 0.792, 0.714, 0.000>]
    [0.178, 0.356   color rgbt <0.925, 0.792, 0.714, 0.000>
                    color rgbt <0.871, 0.702, 0.659, 0.000>]
    [0.356, 0.525   color rgbt <0.871, 0.702, 0.659, 0.000>
                    color rgbt <0.992, 0.922, 0.659, 0.000>]
    [0.525, 0.729   color rgbt <0.992, 0.922, 0.659, 0.000>
                    color rgbt <0.902, 0.812, 0.714, 0.000>]
    [0.729, 1.001   color rgbt <0.902, 0.812, 0.714, 0.000>
                    color rgbt <0.863, 0.757, 0.596, 0.000>]
   }
 }
 }

//------- Warm tans olive & light rose with cream
#declare T_Grnt3 =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.178   color rgbt <0.831, 0.631, 0.569, 0.000>
                    color rgbt <0.925, 0.831, 0.714, 0.000>]
    [0.178, 0.356   color rgbt <0.925, 0.831, 0.714, 0.000>
                    color rgbt <0.871, 0.702, 0.659, 0.000>]
    [0.356, 0.525   color rgbt <0.871, 0.702, 0.659, 0.000>
                    color rgbt <0.831, 0.631, 0.569, 0.000>]
    [0.525, 0.729   color rgbt <0.831, 0.631, 0.569, 0.000>
                    color rgbt <0.937, 0.882, 0.820, 0.000>]
    [0.729, 1.001   color rgbt <0.937, 0.882, 0.820, 0.000>
                    color rgbt <0.831, 0.631, 0.569, 0.000>]
   }
 }
 }

//-------- Orchid sand & mouve
#declare T_Grnt4 =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.178   color rgbt <0.804, 0.569, 0.494, 0.000>
                    color rgbt <0.816, 0.725, 0.537, 0.000>]
    [0.178, 0.356   color rgbt <0.816, 0.725, 0.537, 0.000>
                    color rgbt <0.820, 0.580, 0.522, 0.000>]
    [0.356, 0.525   color rgbt <0.820, 0.580, 0.522, 0.000>
                    color rgbt <0.882, 0.725, 0.537, 0.000>]
    [0.525, 0.729   color rgbt <0.882, 0.725, 0.537, 0.000>
                    color rgbt <0.855, 0.729, 0.584, 0.000>]
    [0.729, 1.001   color rgbt <0.855, 0.729, 0.584, 0.000>
                    color rgbt <0.804, 0.569, 0.494, 0.000>]
   }
 }
 }

//------- Medium Mauve Med.Rose & deep cream
#declare T_Grnt5 =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.178   color rgbt <0.804, 0.569, 0.494, 0.000>
                    color rgbt <0.855, 0.729, 0.584, 0.000>]
    [0.178, 0.356   color rgbt <0.855, 0.729, 0.584, 0.000>
                    color rgbt <0.667, 0.502, 0.478, 0.000>]
    [0.356, 0.525   color rgbt <0.667, 0.502, 0.478, 0.000>
                    color rgbt <0.859, 0.624, 0.545, 0.000>]
    [0.525, 0.729   color rgbt <0.859, 0.624, 0.545, 0.000>
                    color rgbt <0.855, 0.729, 0.584, 0.000>]
    [0.729, 1.001   color rgbt <0.855, 0.729, 0.584, 0.000>
                    color rgbt <0.804, 0.569, 0.494, 0.000>]
   }
 }
 }

//--------- Med. Orchid Olive & Dark Tan "mud pie"
#declare T_Grnt6 =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.153   color rgbt <0.545, 0.380, 0.345, 0.000>
                    color rgbt <0.588, 0.475, 0.333, 0.000>]
    [0.153, 0.398   color rgbt <0.588, 0.475, 0.333, 0.000>
                    color rgbt <0.675, 0.478, 0.404, 0.000>]
    [0.398, 0.559   color rgbt <0.675, 0.478, 0.404, 0.000>
                    color rgbt <0.757, 0.635, 0.522, 0.000>]
    [0.559, 0.729   color rgbt <0.757, 0.635, 0.522, 0.000>
                    color rgbt <0.659, 0.549, 0.443, 0.000>]
    [0.729, 1.001   color rgbt <0.659, 0.549, 0.443, 0.000>
                    color rgbt <0.545, 0.380, 0.345, 0.000>]
   }
 }
 }

//------- Dark Orchid Olive & Dark Putty
#declare T_Grnt7 =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.153   color rgbt <0.439, 0.310, 0.282, 0.000>
                    color rgbt <0.463, 0.369, 0.259, 0.000>]
    [0.153, 0.398   color rgbt <0.463, 0.369, 0.259, 0.000>
                    color rgbt <0.541, 0.369, 0.298, 0.000>]
    [0.398, 0.559   color rgbt <0.541, 0.369, 0.298, 0.000>
                    color rgbt <0.573, 0.424, 0.286, 0.000>]
    [0.559, 0.729   color rgbt <0.573, 0.424, 0.286, 0.000>
                    color rgbt <0.494, 0.396, 0.306, 0.000>]
    [0.729, 1.001   color rgbt <0.494, 0.396, 0.306, 0.000>
                    color rgbt <0.439, 0.310, 0.282, 0.000>]
   }
 }
 }

//--------- Rose & Light cream Yellows
#declare T_Grnt8 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.179   color rgbt <0.843, 0.655, 0.655, 0.000>
                    color rgbt <0.886, 0.769, 0.627, 0.000>]
    [0.179, 0.368   color rgbt <0.886, 0.769, 0.627, 0.000>
                    color rgbt <0.906, 0.820, 0.714, 0.000>]
    [0.368, 0.538   color rgbt <0.906, 0.820, 0.714, 0.000>
                    color rgbt <0.851, 0.671, 0.671, 0.000>]
    [0.538, 0.846   color rgbt <0.851, 0.671, 0.671, 0.000>
                    color rgbt <0.890, 0.792, 0.675, 0.000>]
    [0.846, 0.983   color rgbt <0.890, 0.792, 0.675, 0.000>
                    color rgbt <0.827, 0.612, 0.612, 0.000>]
    [0.983, 1.001   color rgbt <0.827, 0.612, 0.612, 0.000>
                    color rgbt <0.843, 0.655, 0.655, 0.000>]
   }
 }
 }

//--------- Light Steely Grays
#declare T_Grnt9 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.894, 0.886, 0.886, 0.000>
                    color rgbt <0.745, 0.745, 0.753, 0.000>]
    [0.154, 0.308   color rgbt <0.745, 0.745, 0.753, 0.000>
                    color rgbt <0.902, 0.902, 0.859, 0.000>]
    [0.308, 0.444   color rgbt <0.902, 0.902, 0.859, 0.000>
                    color rgbt <0.729, 0.706, 0.694, 0.000>]
    [0.444, 0.615   color rgbt <0.729, 0.706, 0.694, 0.000>
                    color rgbt <0.588, 0.592, 0.635, 0.000>]
    [0.615, 0.803   color rgbt <0.588, 0.592, 0.635, 0.000>
                    color rgbt <0.608, 0.616, 0.659, 0.000>]
    [0.803, 1.001   color rgbt <0.608, 0.616, 0.659, 0.000>
                    color rgbt <0.894, 0.886, 0.886, 0.000>]
   }
 }
 }

//--------- Gray Creams & lavender tans
#declare T_Grnt10 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.890, 0.690, 0.690, 0.000>
                    color rgbt <0.996, 0.835, 0.737, 0.000>]
    [0.154, 0.308   color rgbt <0.996, 0.835, 0.737, 0.000>
                    color rgbt <0.745, 0.635, 0.651, 0.004>]
    [0.308, 0.444   color rgbt <0.745, 0.635, 0.651, 0.004>
                    color rgbt <0.733, 0.596, 0.557, 0.004>]
    [0.444, 0.615   color rgbt <0.733, 0.596, 0.557, 0.004>
                    color rgbt <0.996, 0.835, 0.737, 0.000>]
    [0.615, 0.803   color rgbt <0.996, 0.835, 0.737, 0.000>
                    color rgbt <0.765, 0.616, 0.659, 0.000>]
    [0.803, 1.001   color rgbt <0.765, 0.616, 0.659, 0.000>
                    color rgbt <0.890, 0.690, 0.690, 0.000>]
   }
 }
 }

//--------- Creams & Grays Kakhi
#declare T_Grnt11 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.800, 0.651, 0.557, 0.000>
                    color rgbt <0.996, 0.835, 0.737, 0.000>]
    [0.154, 0.308   color rgbt <0.996, 0.835, 0.737, 0.000>
                    color rgbt <0.800, 0.651, 0.557, 0.000>]
    [0.308, 0.444   color rgbt <0.800, 0.651, 0.557, 0.000>
                    color rgbt <0.694, 0.624, 0.604, 0.004>]
    [0.444, 0.615   color rgbt <0.694, 0.624, 0.604, 0.004>
                    color rgbt <0.800, 0.651, 0.557, 0.000>]
    [0.615, 0.812   color rgbt <0.800, 0.651, 0.557, 0.000>
                    color rgbt <0.725, 0.655, 0.651, 0.000>]
    [0.812, 1.001   color rgbt <0.725, 0.655, 0.651, 0.000>
                    color rgbt <0.800, 0.651, 0.557, 0.000>]
   }
 }
 }

//--------- Tan Cream & Red Rose
#declare T_Grnt12 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.996, 0.969, 0.800, 0.000>
                    color rgbt <0.996, 0.682, 0.604, 0.000>]
    [0.154, 0.308   color rgbt <0.996, 0.682, 0.604, 0.000>
                    color rgbt <0.906, 0.820, 0.714, 0.000>]
    [0.308, 0.444   color rgbt <0.906, 0.820, 0.714, 0.000>
                    color rgbt <0.816, 0.631, 0.537, 0.000>]
    [0.444, 0.615   color rgbt <0.816, 0.631, 0.537, 0.000>
                    color rgbt <0.890, 0.792, 0.675, 0.000>]
    [0.615, 0.812   color rgbt <0.890, 0.792, 0.675, 0.000>
                    color rgbt <0.973, 0.627, 0.627, 0.000>]
    [0.812, 1.001   color rgbt <0.973, 0.627, 0.627, 0.000>
                    color rgbt <0.996, 0.969, 0.800, 0.000>]
   }
 }
 }

//--------- Cream Rose orange
#declare T_Grnt13 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.996, 0.824, 0.780, 0.000>
                    color rgbt <0.996, 0.698, 0.624, 0.000>]
    [0.154, 0.308   color rgbt <0.996, 0.698, 0.624, 0.000>
                    color rgbt <0.906, 0.675, 0.553, 0.000>]
    [0.308, 0.444   color rgbt <0.906, 0.675, 0.553, 0.000>
                    color rgbt <0.996, 0.682, 0.604, 0.000>]
    [0.444, 0.615   color rgbt <0.996, 0.682, 0.604, 0.000>
                    color rgbt <0.996, 0.824, 0.780, 0.000>]
    [0.615, 0.812   color rgbt <0.996, 0.824, 0.780, 0.000>
                    color rgbt <0.973, 0.627, 0.627, 0.000>]
    [0.812, 1.001   color rgbt <0.973, 0.627, 0.627, 0.000>
                    color rgbt <0.996, 0.824, 0.780, 0.000>]
   }
 }
 }

//--------- Cream Rose & light moss & light Violet
#declare T_Grnt14 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.690, 0.612, 0.569, 0.000>
                    color rgbt <0.737, 0.596, 0.522, 0.000>]
    [0.154, 0.368   color rgbt <0.737, 0.596, 0.522, 0.000>
                    color rgbt <0.776, 0.702, 0.624, 0.000>]
    [0.368, 0.538   color rgbt <0.776, 0.702, 0.624, 0.000>
                    color rgbt <0.796, 0.678, 0.643, 0.000>]
    [0.538, 0.846   color rgbt <0.796, 0.678, 0.643, 0.000>
                    color rgbt <0.690, 0.612, 0.569, 0.000>]
    [0.846, 0.932   color rgbt <0.690, 0.612, 0.569, 0.000>
                    color rgbt <0.773, 0.612, 0.569, 0.000>]
    [0.932, 1.001   color rgbt <0.773, 0.612, 0.569, 0.000>
                    color rgbt <0.690, 0.612, 0.569, 0.000>]
   }
 }
 }

//--------- Black with subtle chroma
#declare T_Grnt15 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.104   color rgbt <0.161, 0.133, 0.118, 0.000>
                    color rgbt <0.110, 0.082, 0.071, 0.000>]
    [0.104, 0.252   color rgbt <0.110, 0.082, 0.071, 0.000>
                    color rgbt <0.161, 0.133, 0.118, 0.000>]
    [0.252, 0.383   color rgbt <0.161, 0.133, 0.118, 0.000>
                    color rgbt <0.000, 0.000, 0.000, 0.000>]
    [0.383, 0.643   color rgbt <0.000, 0.000, 0.000, 0.000>
                    color rgbt <0.161, 0.133, 0.118, 0.000>]
    [0.643, 0.783   color rgbt <0.161, 0.133, 0.118, 0.000>
                    color rgbt <0.220, 0.149, 0.137, 0.000>]
    [0.783, 0.922   color rgbt <0.220, 0.149, 0.137, 0.000>
                    color rgbt <0.000, 0.000, 0.000, 0.000>]
    [0.922, 0.983   color rgbt <0.000, 0.000, 0.000, 0.000>
                    color rgbt <0.220, 0.149, 0.137, 0.000>]
    [0.983, 1.001   color rgbt <0.220, 0.149, 0.137, 0.000>
                    color rgbt <0.161, 0.133, 0.118, 0.000>]
   }
 }
 }

//----- White Cream & Peach
#declare T_Grnt16 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.316   color rgbt <0.910, 0.788, 0.788, 0.000>
                    color rgbt <0.922, 0.914, 0.871, 0.000>]
    [0.316, 0.453   color rgbt <0.922, 0.914, 0.871, 0.000>
                    color rgbt <0.894, 0.867, 0.780, 0.000>]
    [0.453, 0.624   color rgbt <0.894, 0.867, 0.780, 0.000>
                    color rgbt <0.784, 0.788, 0.788, 0.000>]
    [0.624, 0.726   color rgbt <0.784, 0.788, 0.788, 0.000>
                    color rgbt <0.851, 0.812, 0.741, 0.000>]
    [0.726, 0.863   color rgbt <0.851, 0.812, 0.741, 0.000>
                    color rgbt <0.647, 0.655, 0.655, 0.000>]
    [0.863, 1.001   color rgbt <0.647, 0.655, 0.655, 0.000>
                    color rgbt <0.910, 0.788, 0.788, 0.000>]
   }
 }
 }

//----- Bug Juice & Green
#declare T_Grnt17 =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.303   color rgbt <0.000, 0.239, 0.000, 0.000>
                    color rgbt <0.333, 0.294, 0.000, 0.000>]
    [0.303, 0.588   color rgbt <0.333, 0.294, 0.000, 0.000>
                    color rgbt <0.000, 0.239, 0.341, 0.000>]
    [0.588, 0.790   color rgbt <0.000, 0.239, 0.341, 0.000>
                    color rgbt <0.000, 0.020, 0.000, 0.000>]
    [0.790, 1.001   color rgbt <0.000, 0.020, 0.000, 0.000>
                    color rgbt <0.000, 0.239, 0.000, 0.000>]
   }
 }
 }

//------------ Rose & cream yellow
#declare T_Grnt18 =
texture {
pigment
 {granite
  turbulence 0.4
  color_map
   {[0.000, 0.202   color rgbt <1.000, 0.718, 0.541, 0.000>
                    color rgbt <0.890, 0.651, 0.612, 0.000>]
    [0.202, 0.298   color rgbt <0.890, 0.651, 0.612, 0.000>
                    color rgbt <1.000, 0.820, 0.675, 0.000>]
    [0.298, 0.377   color rgbt <1.000, 0.820, 0.675, 0.000>
                    color rgbt <0.890, 0.643, 0.612, 0.000>]
    [0.377, 0.465   color rgbt <0.890, 0.643, 0.612, 0.000>
                    color rgbt <0.937, 0.729, 0.561, 0.000>]
    [0.465, 0.544   color rgbt <0.937, 0.729, 0.561, 0.000>
                    color rgbt <0.878, 0.604, 0.565, 0.000>]
    [0.544, 0.640   color rgbt <0.878, 0.604, 0.565, 0.000>
                    color rgbt <0.984, 0.780, 0.655, 0.000>]
    [0.640, 0.860   color rgbt <0.984, 0.780, 0.655, 0.000>
                    color rgbt <1.000, 0.863, 0.635, 0.000>]
    [0.860, 0.982   color rgbt <1.000, 0.863, 0.635, 0.000>
                    color rgbt <1.000, 0.765, 0.620, 0.000>]
    [0.982, 1.001   color rgbt <1.000, 0.765, 0.620, 0.000>
                    color rgbt <1.000, 0.718, 0.541, 0.000>]
   }
 }
 }

//--------- Gray Marble with White feather Viens
#declare T_Grnt19 =
texture {
pigment
 {granite
  turbulence 0.0
  color_map
   {[0.0, 0.3 color White color DimGray]
    [0.3, 0.4 color DimGray color DimGray]
    [0.4, 0.6 color DimGray color DimGray]
    [0.6, 1.0 color DimGray color DimGray]
   }
 }
 finish {
  crand 0.02
 }
 }

//--------- White Marble with Gray feather Viens
#declare T_Grnt20 =
texture {
pigment
 {granite
  turbulence 0.0
  color_map
   {[0.0, 0.3 color Mica color White]
    [0.3, 0.4 color White color White]
    [0.4, 0.6 color White color White]
    [0.6, 1.0 color White color White]
   }
 }
 finish {
  crand 0.02
 }
 }

//-------- Declare Green Colors
#declare g1 = color red 0.26 green 0.41 blue 0.31; //---Light Gray Green
#declare g2 = color red 0.27 green 0.34 blue 0.26; //---Med Gray Green
#declare g3 = color red 0.13 green 0.29 blue 0.28; //---Med Gray Aqua
#declare g4 = color red 0.03 green 0.18 blue 0.08; //---Dark Green

//--------- Green Jade
#declare T_Grnt21 =
texture {
pigment
 {granite
  turbulence 0.0
  color_map
   {[0.0, 0.1 color White    transmit 0.3 color SeaGreen  transmit 0.4]
    [0.1, 0.3 color SeaGreen transmit 0.4 color g2        transmit 0.7]
    [0.3, 0.5 color g2       transmit 0.7 color DarkGreen transmit 0.7]
    [0.5, 0.7 color DarkGreen  transmit 0.7 color g4 transmit 0.7]
    [0.7, 0.8 color g4         transmit 0.7 color DarkGreen transmit 0.7]
    [0.8, 1.0 color DarkGreen  transmit 0.7 color DarkGreen transmit 0.7]
   }
 }
 finish {
  crand 0.02
 }
 }

//--------- Clear with White feather Viens ----- This one does contain Transmit
#declare T_Grnt22 =
texture {
pigment
 {granite
  turbulence 0.0
  color_map
   {[0.0, 0.07 color White color White]
    [0.07, 0.2 color White color DimGray]
    [0.2, 0.3 color DimGray color Clear]
    [0.3, 0.7 color Clear color Clear]
    [0.7, 1.0 color Clear color DimGray]
   }
 }
 finish {
  crand 0.02
 }
 }

//---------- Light Tan to Mouve
#declare T_Grnt23 =
texture {
pigment
 {marble
  turbulence 0.5
  color_map
   {[0.000, 0.178   color rgbt <0.831, 0.631, 0.569, 0.000>
                    color rgbt <0.925, 0.831, 0.714, 0.000>]
    [0.178, 0.356   color rgbt <0.925, 0.831, 0.714, 0.000>
                    color rgbt <0.871, 0.702, 0.659, 0.000>]
    [0.356, 0.525   color rgbt <0.871, 0.702, 0.659, 0.000>
                    color rgbt <0.831, 0.631, 0.569, 0.000>]
    [0.525, 0.729   color rgbt <0.831, 0.631, 0.569, 0.000>
                    color rgbt <0.937, 0.882, 0.820, 0.000>]
    [0.729, 1.001   color rgbt <0.937, 0.882, 0.820, 0.000>
                    color rgbt <0.831, 0.631, 0.569, 0.000>]
   }
 }
 }

//--------- Light Grays
#declare T_Grnt24 =
texture {
pigment
 {marble
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.894, 0.886, 0.886, 0.000>
                    color rgbt <0.745, 0.745, 0.753, 0.000>]
    [0.154, 0.308   color rgbt <0.745, 0.745, 0.753, 0.000>
                    color rgbt <0.902, 0.902, 0.859, 0.000>]
    [0.308, 0.444   color rgbt <0.902, 0.902, 0.859, 0.000>
                    color rgbt <0.729, 0.706, 0.694, 0.000>]
    [0.444, 0.615   color rgbt <0.729, 0.706, 0.694, 0.000>
                    color rgbt <0.588, 0.592, 0.635, 0.000>]
    [0.615, 0.803   color rgbt <0.588, 0.592, 0.635, 0.000>
                    color rgbt <0.608, 0.616, 0.659, 0.000>]
    [0.803, 1.001   color rgbt <0.608, 0.616, 0.659, 0.000>
                    color rgbt <0.894, 0.886, 0.886, 0.000>]
   }
 }
 }

//------------ Moss Greens & Tan
#declare T_Grnt25 =
texture {
pigment
 {marble
  turbulence 0.7
  color_map
   {[0.000, 0.168   color rgbt <0.824, 0.725, 0.584, 0.000>
                    color rgbt <0.514, 0.584, 0.533, 0.000>]
    [0.168, 0.301   color rgbt <0.514, 0.584, 0.533, 0.000>
                    color rgbt <0.298, 0.376, 0.318, 0.000>]
    [0.301, 0.398   color rgbt <0.298, 0.376, 0.318, 0.000>
                    color rgbt <0.263, 0.337, 0.282, 0.000>]
    [0.398, 0.558   color rgbt <0.263, 0.337, 0.282, 0.000>
                    color rgbt <0.431, 0.506, 0.451, 0.000>]
    [0.558, 0.655   color rgbt <0.431, 0.506, 0.451, 0.000>
                    color rgbt <0.529, 0.631, 0.471, 0.000>]
    [0.655, 0.735   color rgbt <0.529, 0.631, 0.471, 0.000>
                    color rgbt <0.333, 0.376, 0.318, 0.000>]
    [0.735, 0.823   color rgbt <0.333, 0.376, 0.318, 0.000>
                    color rgbt <0.298, 0.376, 0.318, 0.000>]
    [0.823, 0.876   color rgbt <0.298, 0.376, 0.318, 0.000>
                    color rgbt <0.416, 0.376, 0.318, 0.000>]
    [0.876, 0.929   color rgbt <0.416, 0.376, 0.318, 0.000>
                    color rgbt <0.416, 0.376, 0.318, 0.000>]
    [0.929, 1.001   color rgbt <0.416, 0.376, 0.318, 0.000>
                    color rgbt <0.824, 0.725, 0.584, 0.000>]
   }
 }
 }

//---------- Salmon with thin Green Viens
#declare T_Grnt26 =
texture {
pigment
 {granite
  color_map
   {[0.000, 0.241   color rgbt <0.973, 0.973, 0.976, 0.000>
                    color rgbt <0.973, 0.973, 0.976, 0.000>]
    [0.241, 0.284   color rgbt <0.973, 0.973, 0.976, 0.000>
                    color rgbt <0.600, 0.741, 0.608, 0.000>]
    [0.284, 0.336   color rgbt <0.600, 0.741, 0.608, 0.000>
                    color rgbt <0.820, 0.643, 0.537, 0.000>]
    [0.336, 0.474   color rgbt <0.820, 0.643, 0.537, 0.000>
                    color rgbt <0.886, 0.780, 0.714, 0.000>]
    [0.474, 0.810   color rgbt <0.886, 0.780, 0.714, 0.000>
                    color rgbt <0.996, 0.643, 0.537, 0.000>]
    [0.810, 0.836   color rgbt <0.996, 0.643, 0.537, 0.000>
                    color rgbt <0.973, 0.973, 0.976, 0.000>]
    [0.836, 1.001   color rgbt <0.973, 0.973, 0.976, 0.000>
                    color rgbt <0.973, 0.973, 0.976, 0.000>]
   }
 }
 finish {
  crand 0.02
 }
 }

//------ Dark Green & Browns
#declare T_Grnt27 =
texture {
pigment
 {granite
  color_map
   {[0.000, 0.043   color rgbt <0.773, 0.647, 0.569, 0.000>
                    color rgbt <0.431, 0.322, 0.227, 0.000>]
    [0.043, 0.113   color rgbt <0.431, 0.322, 0.227, 0.000>
                    color rgbt <0.278, 0.282, 0.216, 0.000>]
    [0.113, 0.304   color rgbt <0.278, 0.282, 0.216, 0.000>
                    color rgbt <0.278, 0.282, 0.216, 0.000>]
    [0.304, 0.426   color rgbt <0.278, 0.282, 0.216, 0.000>
                    color rgbt <0.459, 0.341, 0.243, 0.000>]
    [0.426, 0.843   color rgbt <0.459, 0.341, 0.243, 0.000>
                    color rgbt <0.459, 0.341, 0.243, 0.000>]
    [0.843, 0.878   color rgbt <0.459, 0.341, 0.243, 0.000>
                    color rgbt <0.459, 0.341, 0.243, 0.000>]
    [0.878, 0.983   color rgbt <0.459, 0.341, 0.243, 0.000>
                    color rgbt <0.278, 0.282, 0.216, 0.000>]
    [0.983, 1.001   color rgbt <0.278, 0.282, 0.216, 0.000>
                    color rgbt <0.773, 0.647, 0.569, 0.000>]
   }
 }
 }

//------- Red Swirl
#declare T_Grnt28 =
texture {
pigment
 {marble
  turbulence 0.7
  color_map
   {[0.000, 0.155   color rgbt <0.686, 0.235, 0.282, 0.000>
                    color rgbt <0.686, 0.235, 0.282, 0.000>]
    [0.155, 0.328   color rgbt <0.686, 0.235, 0.282, 0.000>
                    color rgbt <0.494, 0.243, 0.294, 0.000>]
    [0.328, 0.474   color rgbt <0.494, 0.243, 0.294, 0.000>
                    color rgbt <0.769, 0.329, 0.373, 0.000>]
    [0.474, 0.647   color rgbt <0.769, 0.329, 0.373, 0.000>
                    color rgbt <0.769, 0.329, 0.373, 0.000>]
    [0.647, 0.810   color rgbt <0.769, 0.329, 0.373, 0.000>
                    color rgbt <0.686, 0.235, 0.282, 0.000>]
    [0.810, 0.922   color rgbt <0.686, 0.235, 0.282, 0.000>
                    color rgbt <0.792, 0.388, 0.427, 0.000>]
    [0.922, 1.001   color rgbt <0.792, 0.388, 0.427, 0.000>
                    color rgbt <0.686, 0.235, 0.282, 0.000>]
   }
 }
 finish {
  crand 0.03
 }
 }

//-------- White Tan & thin Reds
#declare T_Grnt29 =
texture {
pigment
 {marble
  turbulence 0.5
  color_map
   {[0.000, 0.053   color rgbt <0.784, 0.627, 0.522, 0.000>
                    color rgbt <0.784, 0.627, 0.624, 0.000>]
    [0.053, 0.263   color rgbt <0.784, 0.627, 0.624, 0.000>
                    color rgbt <0.824, 0.557, 0.376, 0.000>]
    [0.263, 0.281   color rgbt <0.824, 0.557, 0.376, 0.000>
                    color rgbt <0.643, 0.380, 0.376, 0.000>]
    [0.281, 0.325   color rgbt <0.643, 0.380, 0.376, 0.000>
                    color rgbt <0.839, 0.722, 0.722, 0.000>]
    [0.325, 0.711   color rgbt <0.839, 0.722, 0.722, 0.000>
                    color rgbt <0.784, 0.627, 0.522, 0.000>]
    [0.711, 0.798   color rgbt <0.784, 0.627, 0.522, 0.000>
                    color rgbt <0.769, 0.380, 0.376, 0.000>]
    [0.798, 0.895   color rgbt <0.769, 0.380, 0.376, 0.000>
                    color rgbt <0.824, 0.557, 0.376, 0.000>]
    [0.895, 0.982   color rgbt <0.824, 0.557, 0.376, 0.000>
                    color rgbt <0.784, 0.627, 0.522, 0.000>]
    [0.982, 1.001   color rgbt <0.784, 0.627, 0.522, 0.000>
                    color rgbt <0.784, 0.627, 0.522, 0.000>]
   }
 }
 }

//***************************************************************
//------------ start of textures with transmit

//----- Translucent T_Grnt0
#declare T_Grnt0a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.153   color rgbt <0.729, 0.502, 0.451, 0.306>
                    color rgbt <0.769, 0.686, 0.592, 0.792>]
    [0.153, 0.398   color rgbt <0.769, 0.686, 0.592, 0.792>
                    color rgbt <0.843, 0.753, 0.718, 0.396>]
    [0.398, 0.559   color rgbt <0.843, 0.753, 0.718, 0.396>
                    color rgbt <0.780, 0.667, 0.561, 0.976>]
    [0.559, 0.729   color rgbt <0.780, 0.667, 0.561, 0.976>
                    color rgbt <0.741, 0.659, 0.576, 0.820>]
    [0.729, 1.001   color rgbt <0.741, 0.659, 0.576, 0.820>
                    color rgbt <0.729, 0.502, 0.451, 0.306>]
   }
 }
 }

//----- Translucent T_Grnt1
#declare T_Grnt1a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.212   color rgbt <0.898, 0.898, 0.851, 0.306>
                    color rgbt <0.969, 0.980, 0.875, 0.792>]
    [0.212, 0.424   color rgbt <0.969, 0.980, 0.875, 0.792>
                    color rgbt <0.859, 0.859, 0.859, 0.396>]
    [0.424, 0.627   color rgbt <0.859, 0.859, 0.859, 0.396>
                    color rgbt <0.992, 0.922, 0.659, 0.976>]
    [0.627, 0.881   color rgbt <0.992, 0.922, 0.659, 0.976>
                    color rgbt <0.937, 0.965, 0.902, 0.820>]
    [0.881, 1.001   color rgbt <0.937, 0.965, 0.902, 0.820>
                    color rgbt <0.898, 0.898, 0.851, 0.306>]
   }
 }
 }

//-----Translucent T_Grnt2
#declare T_Grnt2a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.144   color rgbt <0.863, 0.757, 0.596, 0.596>
                    color rgbt <0.925, 0.792, 0.714, 0.349>]
    [0.144, 0.288   color rgbt <0.925, 0.792, 0.714, 0.349>
                    color rgbt <0.871, 0.702, 0.659, 0.784>]
    [0.288, 0.644   color rgbt <0.871, 0.702, 0.659, 0.784>
                    color rgbt <0.992, 0.922, 0.659, 0.498>]
    [0.644, 0.983   color rgbt <0.992, 0.922, 0.659, 0.498>
                    color rgbt <0.902, 0.812, 0.714, 0.722>]
    [0.983, 1.001   color rgbt <0.902, 0.812, 0.714, 0.722>
                    color rgbt <0.863, 0.757, 0.596, 0.596>]
   }
 }
 }

//-----Translucent T_Grnt3
#declare T_Grnt3a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.153   color rgbt <0.831, 0.631, 0.569, 0.447>
                    color rgbt <0.925, 0.831, 0.714, 0.678>]
    [0.153, 0.297   color rgbt <0.925, 0.831, 0.714, 0.678>
                    color rgbt <0.871, 0.702, 0.659, 0.475>]
    [0.297, 0.441   color rgbt <0.871, 0.702, 0.659, 0.475>
                    color rgbt <0.831, 0.631, 0.569, 0.918>]
    [0.441, 0.763   color rgbt <0.831, 0.631, 0.569, 0.918>
                    color rgbt <0.937, 0.882, 0.820, 0.655>]
    [0.763, 1.001   color rgbt <0.937, 0.882, 0.820, 0.655>
                    color rgbt <0.831, 0.631, 0.569, 0.447>]
   }
 }
 }

//-----Translucent T_Grnt4
#declare T_Grnt4a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.144   color rgbt <0.804, 0.569, 0.494, 0.569>
                    color rgbt <0.816, 0.725, 0.537, 0.467>]
    [0.144, 0.449   color rgbt <0.816, 0.725, 0.537, 0.467>
                    color rgbt <0.820, 0.580, 0.522, 0.584>]
    [0.449, 0.568   color rgbt <0.820, 0.580, 0.522, 0.584>
                    color rgbt <0.882, 0.725, 0.537, 0.871>]
    [0.568, 0.754   color rgbt <0.882, 0.725, 0.537, 0.871>
                    color rgbt <0.855, 0.729, 0.584, 0.816>]
    [0.754, 1.001   color rgbt <0.855, 0.729, 0.584, 0.816>
                    color rgbt <0.804, 0.569, 0.494, 0.569>]
   }
 }
 }

//-----Translucent T_Grnt5
#declare T_Grnt5a =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.178   color rgbt <0.804, 0.569, 0.494, 0.569>
                    color rgbt <0.855, 0.729, 0.584, 0.467>]
    [0.178, 0.356   color rgbt <0.855, 0.729, 0.584, 0.467>
                    color rgbt <0.667, 0.502, 0.478, 0.584>]
    [0.356, 0.525   color rgbt <0.667, 0.502, 0.478, 0.584>
                    color rgbt <0.859, 0.624, 0.545, 0.871>]
    [0.525, 0.729   color rgbt <0.859, 0.624, 0.545, 0.871>
                    color rgbt <0.855, 0.729, 0.584, 0.816>]
    [0.729, 1.001   color rgbt <0.855, 0.729, 0.584, 0.816>
                    color rgbt <0.804, 0.569, 0.494, 0.569>]
   }
 }
 }

//-----Translucent T_Grnt6
#declare T_Grnt6a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.263   color rgbt <0.545, 0.380, 0.345, 0.733>
                    color rgbt <0.588, 0.475, 0.333, 0.741>]
    [0.263, 0.432   color rgbt <0.588, 0.475, 0.333, 0.741>
                    color rgbt <0.675, 0.478, 0.404, 0.545>]
    [0.432, 0.551   color rgbt <0.675, 0.478, 0.404, 0.545>
                    color rgbt <0.757, 0.635, 0.522, 0.384>]
    [0.551, 0.720   color rgbt <0.757, 0.635, 0.522, 0.384>
                    color rgbt <0.659, 0.549, 0.443, 0.675>]
    [0.720, 1.001   color rgbt <0.659, 0.549, 0.443, 0.675>
                    color rgbt <0.545, 0.380, 0.345, 0.733>]
   }
 }
 }

//-----Translucent T_Grnt7
#declare T_Grnt7a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.119   color rgbt <0.439, 0.310, 0.282, 0.631>
                    color rgbt <0.463, 0.369, 0.259, 0.847>]
    [0.119, 0.322   color rgbt <0.463, 0.369, 0.259, 0.847>
                    color rgbt <0.541, 0.369, 0.298, 0.549>]
    [0.322, 0.449   color rgbt <0.541, 0.369, 0.298, 0.549>
                    color rgbt <0.573, 0.424, 0.286, 0.965>]
    [0.449, 0.729   color rgbt <0.573, 0.424, 0.286, 0.965>
                    color rgbt <0.494, 0.396, 0.306, 0.741>]
    [0.729, 1.001   color rgbt <0.494, 0.396, 0.306, 0.741>
                    color rgbt <0.439, 0.310, 0.282, 0.631>]
   }
 }
 }

//-----Aqua Tints
#declare T_Grnt8a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.119   color rgbt <0.310, 0.384, 0.420, 0.631>
                    color rgbt <0.322, 0.369, 0.416, 0.847>]
    [0.119, 0.322   color rgbt <0.322, 0.369, 0.416, 0.847>
                    color rgbt <0.424, 0.369, 0.420, 0.549>]
    [0.322, 0.449   color rgbt <0.424, 0.369, 0.420, 0.549>
                    color rgbt <0.373, 0.424, 0.518, 0.965>]
    [0.449, 0.729   color rgbt <0.373, 0.424, 0.518, 0.965>
                    color rgbt <0.482, 0.573, 0.533, 0.741>]
    [0.729, 1.001   color rgbt <0.482, 0.573, 0.533, 0.741>
                    color rgbt <0.310, 0.384, 0.420, 0.631>]
   }
 }
 }

//-----Transmit Creams With T_Cracks
#declare T_Grnt9a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.216   color rgbt <0.812, 0.812, 0.812, 0.835>
                    color rgbt <0.745, 0.843, 0.835, 0.847>]
    [0.216, 0.241   color rgbt <0.745, 0.843, 0.835, 0.847>
                    color rgbt <0.404, 0.337, 0.337, 0.463>]
    [0.241, 0.267   color rgbt <0.404, 0.337, 0.337, 0.463>
                    color rgbt <0.773, 0.729, 0.745, 0.622>]
    [0.267, 0.759   color rgbt <0.773, 0.729, 0.745, 0.622>
                    color rgbt <0.914, 0.843, 0.725, 0.651>]
    [0.759, 0.784   color rgbt <0.914, 0.843, 0.725, 0.651>
                    color rgbt <0.153, 0.133, 0.208, 0.437>]
    [0.784, 0.810   color rgbt <0.153, 0.133, 0.208, 0.437>
                    color rgbt <0.812, 0.812, 0.812, 0.835>]
    [0.810, 1.001   color rgbt <0.812, 0.812, 0.812, 0.835>
                    color rgbt <0.812, 0.812, 0.812, 0.835>]
   }
 }
 }

//--------- Transmit Cream Rose & light yellow
#declare T_Grnt10a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.179   color rgbt <0.843, 0.655, 0.655, 0.455>
                    color rgbt <0.886, 0.769, 0.627, 0.608>]
    [0.179, 0.368   color rgbt <0.886, 0.769, 0.627, 0.608>
                    color rgbt <0.906, 0.820, 0.714, 0.392>]
    [0.368, 0.538   color rgbt <0.906, 0.820, 0.714, 0.392>
                    color rgbt <0.851, 0.671, 0.671, 0.659>]
    [0.538, 0.744   color rgbt <0.851, 0.671, 0.671, 0.659>
                    color rgbt <0.890, 0.792, 0.675, 0.392>]
    [0.744, 0.983   color rgbt <0.890, 0.792, 0.675, 0.392>
                    color rgbt <0.827, 0.612, 0.612, 0.706>]
    [0.983, 1.001   color rgbt <0.827, 0.612, 0.612, 0.706>
                    color rgbt <0.843, 0.655, 0.655, 0.455>]
   }
 }
 }

//--------- Transmit Light Grays
#declare T_Grnt11a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.894, 0.886, 0.886, 0.659>
                    color rgbt <0.745, 0.745, 0.753, 0.584>]
    [0.154, 0.308   color rgbt <0.745, 0.745, 0.753, 0.584>
                    color rgbt <0.902, 0.902, 0.859, 0.780>]
    [0.308, 0.444   color rgbt <0.902, 0.902, 0.859, 0.780>
                    color rgbt <0.729, 0.706, 0.694, 0.686>]
    [0.444, 0.615   color rgbt <0.729, 0.706, 0.694, 0.686>
                    color rgbt <0.588, 0.592, 0.635, 0.424>]
    [0.615, 0.803   color rgbt <0.588, 0.592, 0.635, 0.424>
                    color rgbt <0.608, 0.616, 0.659, 0.761>]
    [0.803, 1.001   color rgbt <0.608, 0.616, 0.659, 0.761>
                    color rgbt <0.894, 0.886, 0.886, 0.659>]
   }
 }
 }

//--------- Transmit Creams & Tans
#declare T_Grnt12a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.890, 0.690, 0.690, 0.659>
                    color rgbt <0.996, 0.835, 0.737, 0.659>]
    [0.154, 0.308   color rgbt <0.996, 0.835, 0.737, 0.659>
                    color rgbt <0.745, 0.635, 0.651, 0.780>]
    [0.308, 0.444   color rgbt <0.745, 0.635, 0.651, 0.780>
                    color rgbt <0.733, 0.596, 0.557, 0.686>]
    [0.444, 0.615   color rgbt <0.733, 0.596, 0.557, 0.686>
                    color rgbt <0.996, 0.835, 0.737, 0.659>]
    [0.615, 0.803   color rgbt <0.996, 0.835, 0.737, 0.659>
                    color rgbt <0.765, 0.616, 0.659, 0.761>]
    [0.803, 1.001   color rgbt <0.765, 0.616, 0.659, 0.761>
                    color rgbt <0.890, 0.690, 0.690, 0.659>]
   }
 }
 }

//--------- Transmit Creams & Grays
#declare T_Grnt13a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.800, 0.651, 0.557, 0.000>
                    color rgbt <0.996, 0.835, 0.737, 0.608>]
    [0.154, 0.308   color rgbt <0.996, 0.835, 0.737, 0.608>
                    color rgbt <0.800, 0.651, 0.557, 0.635>]
    [0.308, 0.444   color rgbt <0.800, 0.651, 0.557, 0.635>
                    color rgbt <0.694, 0.624, 0.604, 0.294>]
    [0.444, 0.615   color rgbt <0.694, 0.624, 0.604, 0.294>
                    color rgbt <0.800, 0.651, 0.557, 0.816>]
    [0.615, 0.812   color rgbt <0.800, 0.651, 0.557, 0.816>
                    color rgbt <0.725, 0.655, 0.651, 0.957>]
    [0.812, 1.001   color rgbt <0.725, 0.655, 0.651, 0.957>
                    color rgbt <0.800, 0.651, 0.557, 0.000>]
   }
 }
 }

//--------- Cream Rose & light moss
#declare T_Grnt14a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.996, 0.969, 0.800, 0.373>
                    color rgbt <0.996, 0.682, 0.604, 0.412>]
    [0.154, 0.308   color rgbt <0.996, 0.682, 0.604, 0.412>
                    color rgbt <0.906, 0.820, 0.714, 0.616>]
    [0.308, 0.444   color rgbt <0.906, 0.820, 0.714, 0.616>
                    color rgbt <0.816, 0.631, 0.537, 0.443>]
    [0.444, 0.615   color rgbt <0.816, 0.631, 0.537, 0.443>
                    color rgbt <0.890, 0.792, 0.675, 0.745>]
    [0.615, 0.812   color rgbt <0.890, 0.792, 0.675, 0.745>
                    color rgbt <0.973, 0.627, 0.627, 0.600>]
    [0.812, 1.001   color rgbt <0.973, 0.627, 0.627, 0.600>
                    color rgbt <0.996, 0.969, 0.800, 0.373>]
   }
 }
 }

//--------- Transmit Sand & light Orange
#declare T_Grnt15a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.154   color rgbt <0.996, 0.824, 0.780, 0.412>
                    color rgbt <0.996, 0.698, 0.624, 0.412>]
    [0.154, 0.308   color rgbt <0.996, 0.698, 0.624, 0.412>
                    color rgbt <0.906, 0.675, 0.553, 0.616>]
    [0.308, 0.444   color rgbt <0.906, 0.675, 0.553, 0.616>
                    color rgbt <0.996, 0.682, 0.604, 0.412>]
    [0.444, 0.615   color rgbt <0.996, 0.682, 0.604, 0.412>
                    color rgbt <0.996, 0.824, 0.780, 0.412>]
    [0.615, 0.812   color rgbt <0.996, 0.824, 0.780, 0.412>
                    color rgbt <0.973, 0.627, 0.627, 0.600>]
    [0.812, 1.001   color rgbt <0.973, 0.627, 0.627, 0.600>
                    color rgbt <0.996, 0.824, 0.780, 0.412>]
   }
 }
 }

//--------- Cream Rose & light moss
#declare T_Grnt16a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.078   color rgbt <0.769, 0.722, 0.690, 0.180>
                    color rgbt <0.745, 0.690, 0.655, 1.000>]
    [0.078, 0.96    color rgbt <0.745, 0.690, 0.655, 1.000>
                    color rgbt <0.839, 0.804, 0.780, 1.000>]
    [0.96, 1.001    color rgbt <0.839, 0.804, 0.780, 0.278>
                    color rgbt <0.769, 0.722, 0.690, 0.180>]
   }
 }
 }

#declare T_Grnt17a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.034   color rgbt <0.027, 0.012, 0.012, 0.000>
                    color rgbt <0.851, 0.812, 0.741, 0.235>]
    [0.034, 0.342   color rgbt <0.851, 0.812, 0.741, 0.235>
                    color rgbt <0.792, 0.694, 0.690, 0.839>]
    [0.342, 0.462   color rgbt <0.792, 0.694, 0.690, 0.839>
                    color rgbt <0.631, 0.506, 0.471, 0.608>]
    [0.462, 0.632   color rgbt <0.631, 0.506, 0.471, 0.608>
                    color rgbt <0.851, 0.812, 0.741, 0.922>]
    [0.632, 0.983   color rgbt <0.851, 0.812, 0.741, 0.922>
                    color rgbt <0.647, 0.655, 0.655, 0.282>]
    [0.983, 1.001   color rgbt <0.647, 0.655, 0.655, 0.282>
                    color rgbt <0.027, 0.012, 0.012, 0.000>]
   }
 }
 }

#declare T_Grnt18a =
texture {
pigment
 {granite
  turbulence 0.6
  color_map
   {[0.000, 0.128   color rgbt <0.820, 0.580, 0.580, 0.000>
                    color rgbt <0.851, 0.812, 0.741, 0.235>]
    [0.128, 0.282   color rgbt <0.851, 0.812, 0.741, 0.235>
                    color rgbt <0.792, 0.694, 0.690, 0.282>]
    [0.282, 0.393   color rgbt <0.792, 0.694, 0.690, 0.282>
                    color rgbt <0.647, 0.655, 0.655, 0.133>]
    [0.393, 0.590   color rgbt <0.647, 0.655, 0.655, 0.133>
                    color rgbt <0.851, 0.812, 0.741, 0.333>]
    [0.590, 0.983   color rgbt <0.851, 0.812, 0.741, 0.333>
                    color rgbt <0.647, 0.655, 0.655, 0.282>]
    [0.983, 1.001   color rgbt <0.647, 0.655, 0.655, 0.282>
                    color rgbt <0.820, 0.580, 0.580, 0.000>]
   }
 }
 }

//--------- Gray Marble with White feather Viens with Transmit
#declare T_Grnt19a =
texture {
pigment
 {granite
  turbulence 0.0
  color_map
   {[0.0, 0.3 color White transmit 0.0 color DimGray transmit 0.5]
    [0.3, 0.4 color DimGray transmit 0.5 color DimGray transmit 0.8]
    [0.4, 1.0 color DimGray transmit 0.8 color DimGray transmit 0.9]
   }
 }
 finish {
  crand 0.02
 }
 }

//--------- White Feature Viens
#declare T_Grnt20a =
texture {
pigment
 {granite
  turbulence 0.0
  color_map
   {[0.0, 0.2 color White transmit 0.0 color White transmit 0.7]
    [0.2, 0.3 color White transmit 0.7 color Clear]
    [0.3, 1.0 color Clear color Clear]
   }
 }
 finish {
  crand 0.02
 }
 }

//--------- Thinner White Feature Viens
#declare T_Grnt21a =
texture {
pigment
 {granite
  turbulence 0.0
  color_map
   {[0.0, 0.2 color White transmit 0.4 color White transmit 0.8]
    [0.2, 0.3 color White transmit 0.8 color Clear]
    [0.3, 1.0 color Clear color Clear]
   }
 }
 finish {
  crand 0.02
 }
 }

#declare T_Grnt22a =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.175   color rgbt <1.000, 0.718, 0.541, 0.890>
                    color rgbt <0.843, 0.678, 0.655, 0.753>]
    [0.175, 0.228   color rgbt <0.843, 0.678, 0.655, 0.753>
                    color rgbt <0.906, 0.831, 0.773, 0.98>]
    [0.228, 0.386   color rgbt <0.906, 0.831, 0.773, 0.698>
                    color rgbt <0.992, 0.718, 0.545, 0.794>]
    [0.386, 0.412   color rgbt <0.992, 0.718, 0.545, 0.794>
                    color rgbt <0.333, 0.188, 0.067, 0.784>]
    [0.412, 0.439   color rgbt <0.333, 0.188, 0.067, 0.784>
                    color rgbt <0.925, 0.557, 0.514, 0.778>]
    [0.439, 0.684   color rgbt <0.925, 0.557, 0.514, 0.678>
                    color rgbt <0.984, 0.780, 0.655, 0.696>]
    [0.684, 0.781   color rgbt <0.984, 0.780, 0.655, 0.696>
                    color rgbt <0.965, 0.847, 0.675, 0.880>]
    [0.781, 0.982   color rgbt <0.965, 0.847, 0.675, 0.880>
                    color rgbt <1.000, 0.718, 0.541, 0.990>]
    [0.982, 1.001   color rgbt <1.000, 0.718, 0.541, 0.890>
                    color rgbt <1.000, 0.718, 0.541, 0.890>]
   }
 }
 }

//---------- Transparent Green Moss Colors
#declare T_Grnt23a =
texture {
pigment
 {granite
  color_map
   {[0.000, 0.168   color rgbt <0.824, 0.725, 0.584, 0.600>
                    color rgbt <0.514, 0.584, 0.533, 0.600>]
    [0.168, 0.301   color rgbt <0.514, 0.584, 0.533, 0.600>
                    color rgbt <0.298, 0.376, 0.318, 0.600>]
    [0.301, 0.398   color rgbt <0.298, 0.376, 0.318, 0.600>
                    color rgbt <0.263, 0.337, 0.282, 0.700>]
    [0.398, 0.558   color rgbt <0.263, 0.337, 0.282, 0.700>
                    color rgbt <0.431, 0.506, 0.451, 0.600>]
    [0.558, 0.655   color rgbt <0.431, 0.506, 0.451, 0.600>
                    color rgbt <0.529, 0.631, 0.471, 0.500>]
    [0.655, 0.735   color rgbt <0.529, 0.631, 0.471, 0.500>
                    color rgbt <0.333, 0.376, 0.318, 0.700>]
    [0.735, 0.823   color rgbt <0.333, 0.376, 0.318, 0.700>
                    color rgbt <0.298, 0.376, 0.318, 0.600>]
    [0.823, 0.876   color rgbt <0.298, 0.376, 0.318, 0.600>
                    color rgbt <0.416, 0.376, 0.318, 0.500>]
    [0.876, 0.929   color rgbt <0.416, 0.376, 0.318, 0.500>
                    color rgbt <0.416, 0.376, 0.318, 0.600>]
    [0.929, 1.001   color rgbt <0.416, 0.376, 0.318, 0.600>
                    color rgbt <0.824, 0.725, 0.584, 0.700>]
   }
 }
 }

#declare T_Grnt24a =
texture {
pigment
 {granite
  turbulence 0.5
  color_map
   {[0.000, 0.053   color rgbt <0.784, 0.627, 0.522, 0.500>
                    color rgbt <0.784, 0.627, 0.624, 0.500>]
    [0.053, 0.263   color rgbt <0.784, 0.627, 0.624, 0.500>
                    color rgbt <0.824, 0.557, 0.376, 0.500>]
    [0.263, 0.281   color rgbt <0.824, 0.557, 0.376, 0.500>
                    color rgbt <0.643, 0.380, 0.376, 0.500>]
    [0.281, 0.325   color rgbt <0.643, 0.380, 0.376, 0.500>
                    color rgbt <0.839, 0.722, 0.722, 0.500>]
    [0.325, 0.711   color rgbt <0.839, 0.722, 0.722, 0.500>
                    color rgbt <0.784, 0.627, 0.522, 0.500>]
    [0.711, 0.798   color rgbt <0.784, 0.627, 0.522, 0.500>
                    color rgbt <0.769, 0.380, 0.376, 0.500>]
    [0.798, 0.895   color rgbt <0.769, 0.380, 0.376, 0.500>
                    color rgbt <0.824, 0.557, 0.376, 0.500>]
    [0.895, 0.982   color rgbt <0.824, 0.557, 0.376, 0.500>
                    color rgbt <0.784, 0.627, 0.522, 0.500>]
    [0.982, 1.001   color rgbt <0.784, 0.627, 0.522, 0.500>
                    color rgbt <0.784, 0.627, 0.522, 0.500>]
   }
 }
 }

/*--------------------T_Crack & OverTint /Red---------------------*/
#declare T_Crack1 =
texture {
pigment
 {marble
  turbulence 0.85
  color_map
   {[0.0, 0.04 color Black transmit 0.6 color Black transmit 1.0]
    [0.04, 0.97 color Scarlet transmit 0.80 color DimGray transmit 0.90]
    [0.97, 1.001 color Black transmit 0.9 color Black transmit 1.0]
   }
 }
 }

//-----Transmit  Dark T_Cracks
#declare T_Crack2 =
texture {
pigment
 {granite
  turbulence 0.8
  color_map
   {[0.0, 0.5   color Clear color Clear]
    [0.5, 0.54   color Clear color Black]
    [0.54, 1.0 color Clear color Clear]
   }
 }
 }

//---------- Overtint Green with Black T_Cracks
#declare T_Crack3 =
texture {
pigment
 {marble
  turbulence 0.85
  color_map
   {[0.0, 0.04 color Black transmit 0.6 color Black transmit 1.0]
    [0.04, 0.97 color DarkGreen transmit 0.80 color DarkGreen transmit 0.90]
    [0.97, 1.001 color Black transmit 0.9 color Black transmit 1.0]
   }
 }
 }

//--------- Overtint with White T_Crack
#declare T_Crack4 =
texture {
pigment
 {marble
  turbulence 0.85
  color_map
   {[0.0, 0.03 color White transmit 0.3 color White transmit 1.0]
    [0.03, 0.97 color Black transmit 0.70 color DimGray transmit 0.90]
    [0.97, 1.001 color White transmit 0.9 color White transmit 1.0]
   }
 }
 }

//-----------------  complete texture statements
//                   Scaled to cover nicely over a 2 unit Cube

//------------- Deep Rose & Green Marble with large White Swirls
#declare T_Stone1 =
texture{T_Grnt7  scale <2, 3, 2> rotate <0, 0, 40>}
texture{T_Grnt0a scale <2, 3, 2> rotate <0, 0,-30>
        finish{phong 1 phong_size 90}
       }

//------------- Light Greenish Tan Marble with Agate style veining
#declare T_Stone2 =
texture{T_Grnt0  scale <2, 3, 2> rotate <0, 0, 40>}
texture{T_Grnt7a scale <1.3, 2, 1.3> rotate <0, 0, -30> rotate <40, 0, 0>
        finish{phong 1.0 phong_size 90 ambient 0.2 }
}

//------------- Rose & Yellow Marble with fog white veining
#declare T_Stone3 =
texture{T_Grnt5  scale <2, 3, 2> rotate <0, 0, 40>}
texture{T_Grnt0a scale <2, 3, 2> rotate <0, 0, -30>
        finish{phong 1.0 phong_size 90}
}

//------------- Tan Marble with Rose patches
#declare T_Stone4 =
texture{T_Grnt6   scale <1.5, 3, 2> rotate <0, 0, 40>
        finish{diffuse 0.5}
}
texture{T_Grnt10a scale <1, 3, 2> rotate <0, 0, -30>
        finish{phong 1.0 phong_size 90}
}

//------------- White Cream Marble with Pink veining
#declare T_Stone5 =
texture{T_Grnt12  scale <2, 3, 2> rotate <0, 0, 40>}
texture{T_Grnt17a scale <2, 3, 2> rotate <0, 0, -30>}
texture{T_Crack1  scale <1, 2, 1.4> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90 ambient 0.2}
}

//------------- Rose & Yellow Cream Marble
#declare T_Stone6 =
texture{T_Grnt18 scale <1.5, 3, 3> rotate <0, 0, 40>}
texture{T_Grnt19 scale <2, 4, 1.3> rotate <0, 0, 30>
        finish{phong 1.0 phong_size 90}
}
texture{T_Crack1 scale <1, 2, 1.4> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90 ambient 0.2}
}

//------------- Light Coffee Marble with darker patches
#declare T_Stone7 =
texture{pigment{color Salmon}}
texture{T_Grnt6a scale <1, 3, 2> rotate <0, 0, 40>}
texture{T_Grnt9a scale <3.5, 5, 4> rotate <0, 0, 60>
        finish{phong 1.0 phong_size 90}
}

//------------- Gray Granite with white patches
#declare T_Stone8 =
texture{pigment{color White}
        finish{ambient 0.4 crand 0.06 diffuse 0.7}
}
texture{T_Grnt0a scale <2, 3, 2> rotate <0, 0, -30>}
texture{T_Grnt9a scale <5, 3, 4> rotate <0, 0, 40>
        finish{phong 1.0 ambient 0.2 diffuse 0.5 phong_size 90}
}

//------------- White & Light Blue Marble with light violets
#declare T_Stone9 =
texture{T_Grnt9 scale <1.2, 2.4, 1.2> rotate <0, 0, -30> rotate <40, 0, 0>}
texture{T_Crack1 scale <1, 2, 1.4> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90 ambient 0.2}
}

//------------- Dark Brown & Tan swirl Granite with gray undertones
#declare T_Stone10 =
texture{pigment{color Black}}
texture{T_Grnt17a scale <3, 6, 2> rotate <0, 0, 50>}
texture{T_Grnt3a scale <1, 2, 1> rotate <0, 0, -50>
        finish{phong 1.0 phong_size 90}
}

//------------- Rose & White Marble with dark tan swirl
#declare T_Stone11 =
texture{pigment{color Black}}
texture{T_Grnt15a scale <1.2, 3, 1.5> rotate <70, 0, 30>
        finish{crand 0.03}
}
texture{T_Grnt2a scale <3, 3, 4> rotate <0, 0, 40>}
texture{T_Crack1 scale <1, 2, 1.4> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90}
}

//------------- White & Pinkish Tan Marble
#declare T_Stone12 =
texture{T_Grnt23 scale <1, 5, 1> rotate <0, 0, 50>
        finish{ambient 0.2 crand 0.03}
}
texture{T_Grnt0a scale <1, 3, 2> rotate <0, 0, -30>
        finish{phong 1.0 phong_size 90}
}

//------------- Medium Gray Blue Marble
#declare T_Stone13 =
texture{T_Grnt24 scale <2, 5, 2> rotate <0, 0, 50>
        finish{ambient 0.2 crand 0.03}
}
texture{T_Grnt8a scale <1, 3, 2> rotate <0, 0, -30>
        finish{phong 1.0 phong_size 90}
}

//------------- Tan & Olive Marble with gray white veins
#declare T_Stone14 =
texture{T_Grnt6 scale <2, 3, 2> rotate <0, 0, -30>
        finish{ambient 0.2 diffuse 0.9 crand 0.03}
}
texture{T_Grnt19a scale <1, 3, 1> rotate <0, 0, 40>
        finish{phong 1.0 phong_size 90}
}

//------------- Deep Gray Marble with white veining
#declare T_Stone15 =
texture{T_Grnt20 scale <1, 2, 2> rotate <0, 0, -30>
        finish{ambient 0.2 diffuse 0.9 crand 0.03}
}
texture{T_Grnt8a scale <1, 2, 1> rotate <0, 0, 40>
        finish{phong 1.0 phong_size 90}
}

//------------- Peach & Yellow Marble with white veining
#declare T_Stone16 =
texture{T_Grnt18 scale <1.3, 2, 2> rotate <0, 0, -30>
        finish{ambient 0.2 diffuse 0.9 crand 0.03}
}
texture{T_Grnt19 scale <2, 4, 2> rotate <0, 0, -30>
        finish{ambient 0.2 diffuse 0.9 crand 0.03}
}
texture{T_Grnt20a scale <1, 2, 1> rotate <0, 0, 40>
        finish{phong 1.0 phong_size 90}
}

//------------- White Marble with gray veining
#declare T_Stone17 =
texture{T_Grnt20 scale <1, 2, 2> rotate <0, 0, -30>
        finish{ambient 0.2 diffuse 0.9 crand 0.03}
}
//texture{T_Grnt8a scale <2.5, 4.5, 3.5> rotate <0, 0, 40>
//        finish{phong 1.0 phong_size 90}
//}
texture{T_Crack3 scale <1, 2, 1.4> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90}
}

//------------- Green Jade with white veining
#declare T_Stone18 =
texture{pigment{color SeaGreen}
        finish{ambient 0.3 diffuse 0.6 crand 0.03}
}
texture{T_Grnt22 scale <1.5, 0.7, 0.5> rotate <0, 0, 40>}
texture{T_Grnt20a scale <2.5, 2, 0.5> rotate <0, 0, -50>}
texture{T_Crack4 scale <0.7, 1, 1> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90}
}

//------------- Peach Granite with white patches & green trim
#declare T_Stone19 =
texture{T_Grnt26 scale <1, 0.7, 0.5> rotate <0, 0, 40>}
texture{T_Grnt20a scale <2, 3, 1> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90}
}

//------------- Brown & Olive Marble with white veining
#declare T_Stone20 =
texture{T_Grnt27 scale <0.7, 0.99, 0.7> rotate <0, 0, 40>}
texture{T_Grnt12a scale <1, 1.3, 2> rotate <0, 0, 40>}
texture{T_Grnt20a scale <1.9, 3, 0.5> rotate <0, 0, -50>}
texture{T_Crack1 scale <1, 0.6, 1> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90}
}

//------------- Red Marble with gray & white veining
#declare T_Stone21 =
texture{T_Grnt28 scale <1.3, 2.5, 1.7> rotate <0, 0, 40>}
texture{T_Grnt22 scale <1, 2, 2> rotate <0, 0, 40>}
texture{T_Crack4 scale <1, 0.6, 1> rotate <10, 0, -20>
        finish{phong 1.0 phong_size 90}
}

//------------- Dark Tan Marble with gray & white veining
#declare T_Stone22 =
texture{pigment{color Feldspar}}
texture{T_Grnt8a scale <1, 2, 2> rotate <0, 0, 40>}
texture{T_Grnt22 scale <2, 4, 1.5> rotate <0, 0, -50>}
texture{T_Crack4 scale <1, 1, 1> rotate <10, 0, -40>
        finish{phong 1.0 phong_size 90}
}

//------------- Peach & Cream Marble with orange veining
#declare T_Stone23 =
texture{T_Grnt29 scale <1, 1, 2> rotate <40, 0, 0> rotate <0, 0, 30>}
texture{T_Grnt24a scale <2, 1, 2> rotate <40, 0, 0> rotate <0, 0, 30>}
texture{T_Crack1 scale <1, 2, 1.5> rotate <0, 0, 40>}
texture{pigment{color Yellow transmit 0.9}
        finish{phong 1.0 phong_size 90}  // tint to liking
}

//------------- Green & Tan Moss Marble
#declare T_Stone24 =
texture{T_Grnt25 scale <1, 1, 2> rotate <0, 0, 50> rotate <20, 0, 30>}
texture{T_Grnt23a scale <2, 1, 2> rotate <40, 0, 0> rotate <0, 0, -30>}
texture{pigment{color Gray transmit 0.8}
        finish{phong 1.0 phong_size 90} //   tint to liking
}


#version Stones1_Inc_Temp;
#end