Skip to content
Snippets Groups Projects
shading.py 59.4 KiB
Newer Older
  • Learn to ignore specific revisions
  • # For BI > POV shaders emulation
    import bpy
    
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
    def writeMaterial(using_uberpov, DEF_MAT_NAME, scene, tabWrite, safety, comments, uniqueName, materialNames, material):
    
        # Assumes only called once on each material
        if material:
            name_orig = material.name
            name = materialNames[name_orig] = uniqueName(bpy.path.clean_name(name_orig), materialNames)
        else:
            name = name_orig = DEF_MAT_NAME
    
    
        if material:
            # If saturation(.s) is not zero, then color is not grey, and has a tint
            colored_specular_found = (material.specular_color.s > 0.0)
    
        ##################
        # Several versions of the finish: Level conditions are variations for specular/Mirror
        # texture channel map with alternative finish of 0 specular and no mirror reflection.
        # Level=1 Means No specular nor Mirror reflection
        # Level=2 Means translation of spec and mir levels for when no map influences them
        # Level=3 Means Maximum Spec and Mirror
    
        def povHasnoSpecularMaps(Level):
            if Level == 1:
                if comments:
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
                    tabWrite("//--No specular nor Mirror reflection--\n")
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
                tabWrite("#declare %s = finish {\n" % safety(name, Level=1))
                
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
                    tabWrite("//--translation of spec and mir levels for when no map " \
                               "influences them--\n")
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
                tabWrite("#declare %s = finish {\n" % safety(name, Level=2))
    
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
                    tabWrite("//--Maximum Spec and Mirror--\n")
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
                tabWrite("#declare %s = finish {\n" % safety(name, Level=3))
    
            if material:
                # POV-Ray 3.7 now uses two diffuse values respectively for front and back shading
                # (the back diffuse is like blender translucency)
                frontDiffuse = material.diffuse_intensity
                backDiffuse = material.translucency
    
                if material.pov.conserve_energy:
    
                    #Total should not go above one
                    if (frontDiffuse + backDiffuse) <= 1.0:
                        pass
                    elif frontDiffuse == backDiffuse:
                        # Try to respect the user's 'intention' by comparing the two values but
                        # bringing the total back to one.
                        frontDiffuse = backDiffuse = 0.5
                    # Let the highest value stay the highest value.
                    elif frontDiffuse > backDiffuse:
                        # clamps the sum below 1
                        backDiffuse = min(backDiffuse, (1.0 - frontDiffuse))
                    else:
                        frontDiffuse = min(frontDiffuse, (1.0 - backDiffuse))
    
                # map hardness between 0.0 and 1.0
                roughness = ((1.0 - ((material.specular_hardness - 1.0) / 510.0)))
                ## scale from 0.0 to 0.1
                roughness *= 0.1
                # add a small value because 0.0 is invalid.
                roughness += (1.0 / 511.0)
    
                ################################Diffuse Shader######################################
                # Not used for Full spec (Level=3) of the shader.
                if material.diffuse_shader == 'OREN_NAYAR' and Level != 3:
                    # Blender roughness is what is generally called oren nayar Sigma,
                    # and brilliance in POV-Ray.
                    tabWrite("brilliance %.3g\n" % (0.9 + material.roughness))
    
                if material.diffuse_shader == 'TOON' and Level != 3:
                    tabWrite("brilliance %.3g\n" % (0.01 + material.diffuse_toon_smooth * 0.25))
                    # Lower diffuse and increase specular for toon effect seems to look better
                    # in POV-Ray.
                    frontDiffuse *= 0.5
    
                if material.diffuse_shader == 'MINNAERT' and Level != 3:
                    #tabWrite("aoi %.3g\n" % material.darkness)
                    pass  # let's keep things simple for now
                if material.diffuse_shader == 'FRESNEL' and Level != 3:
                    #tabWrite("aoi %.3g\n" % material.diffuse_fresnel_factor)
                    pass  # let's keep things simple for now
                if material.diffuse_shader == 'LAMBERT' and Level != 3:
                    # trying to best match lambert attenuation by that constant brilliance value
                    tabWrite("brilliance 1.8\n")
    
                if Level == 2:
                    ###########################Specular Shader######################################
                    # No difference between phong and cook torrence in blender HaHa!
                    if (material.specular_shader == 'COOKTORR' or
                        material.specular_shader == 'PHONG'):
                        tabWrite("phong %.3g\n" % (material.specular_intensity))
                        tabWrite("phong_size %.3g\n" % (material.specular_hardness / 2 + 0.25))
    
                    # POV-Ray 'specular' keyword corresponds to a Blinn model, without the ior.
                    elif material.specular_shader == 'BLINN':
                        # Use blender Blinn's IOR just as some factor for spec intensity
                        tabWrite("specular %.3g\n" % (material.specular_intensity *
                                                      (material.specular_ior / 4.0)))
                        tabWrite("roughness %.3g\n" % roughness)
                        #Could use brilliance 2(or varying around 2 depending on ior or factor) too.
    
                    elif material.specular_shader == 'TOON':
                        tabWrite("phong %.3g\n" % (material.specular_intensity * 2.0))
                        # use extreme phong_size
                        tabWrite("phong_size %.3g\n" % (0.1 + material.specular_toon_smooth / 2.0))
    
                    elif material.specular_shader == 'WARDISO':
                        # find best suited default constant for brilliance Use both phong and
                        # specular for some values.
                        tabWrite("specular %.3g\n" % (material.specular_intensity /
                                                      (material.specular_slope + 0.0005)))
                        # find best suited default constant for brilliance Use both phong and
                        # specular for some values.
                        tabWrite("roughness %.4g\n" % (0.0005 + material.specular_slope / 10.0))
                        # find best suited default constant for brilliance Use both phong and
                        # specular for some values.
                        tabWrite("brilliance %.4g\n" % (1.8 - material.specular_slope * 1.8))
    
                ####################################################################################
                elif Level == 1:
                    tabWrite("specular 0\n")
                elif Level == 3:
                    tabWrite("specular 1\n")
                tabWrite("diffuse %.3g %.3g\n" % (frontDiffuse, backDiffuse))
    
                tabWrite("ambient %.3g\n" % material.ambient)
                # POV-Ray blends the global value
                #tabWrite("ambient rgb <%.3g, %.3g, %.3g>\n" % \
                #         tuple([c*material.ambient for c in world.ambient_color]))
                tabWrite("emission %.3g\n" % material.emit)  # New in POV-Ray 3.7
    
                #POV-Ray just ignores roughness if there's no specular keyword
                #tabWrite("roughness %.3g\n" % roughness)
    
                if material.pov.conserve_energy:
                    # added for more realistic shading. Needs some checking to see if it
                    # really works. --Maurice.
                    tabWrite("conserve_energy\n")
    
                if colored_specular_found == True:
                     tabWrite("metallic\n")          
    
                # 'phong 70.0 '
                if Level != 1:
                    if material.raytrace_mirror.use:
                        raytrace_mirror = material.raytrace_mirror
                        if raytrace_mirror.reflect_factor:
                            tabWrite("reflection {\n")
                            tabWrite("rgb <%.3g, %.3g, %.3g>\n" % material.mirror_color[:])                          
                            if material.pov.mirror_metallic:
                                tabWrite("metallic %.3g\n" % (raytrace_mirror.reflect_factor))
                            # Blurry reflections for UberPOV
                            if using_uberpov and raytrace_mirror.gloss_factor < 1.0:
                                #tabWrite("#ifdef(unofficial) #if(unofficial = \"patch\") #if(patch(\"upov-reflection-roughness\") > 0)\n")
                                tabWrite("roughness %.6f\n" % \
                                         (0.000001/raytrace_mirror.gloss_factor))
                                #tabWrite("#end #end #end\n") # This and previous comment for backward compatibility, messier pov code
                            if material.pov.mirror_use_IOR:  # WORKING ?
                                # Removed from the line below: gives a more physically correct
                                # material but needs proper IOR. --Maurice
                                tabWrite("fresnel 1 ")
                            tabWrite("falloff %.3g exponent %.3g} " % \
                                     (raytrace_mirror.fresnel, raytrace_mirror.fresnel_factor))
                                
                if material.subsurface_scattering.use:
                    subsurface_scattering = material.subsurface_scattering
                    tabWrite("subsurface { translucency <%.3g, %.3g, %.3g> }\n" % (
                             (subsurface_scattering.radius[0]),
                             (subsurface_scattering.radius[1]),
                             (subsurface_scattering.radius[2]),
                             )
                            )
    
                if material.pov.irid_enable:
                    tabWrite("irid { %.4g thickness %.4g turbulence %.4g }" % \
                             (material.pov.irid_amount, material.pov.irid_thickness,
                              material.pov.irid_turbulence))
    
            else:
                tabWrite("diffuse 0.8\n")
                tabWrite("phong 70.0\n")
    
                #tabWrite("specular 0.2\n")
    
            # This is written into the object
            '''
            if material and material.transparency_method=='RAYTRACE':
                'interior { ior %.3g} ' % material.raytrace_transparency.ior
            '''
    
            #tabWrite("crand 1.0\n") # Sand granyness
            #tabWrite("metallic %.6f\n" % material.spec)
            #tabWrite("phong %.6f\n" % material.spec)
            #tabWrite("phong_size %.6f\n" % material.spec)
            #tabWrite("brilliance %.6f " % (material.specular_hardness/256.0) # Like hardness
    
            tabWrite("}\n\n")
    
        # Level=2 Means translation of spec and mir levels for when no map influences them
        povHasnoSpecularMaps(Level=2)
    
        if material:
            special_texture_found = False
            for t in material.texture_slots:
                if t and t.use:
                    if (t.texture.type == 'IMAGE' and t.texture.image) or t.texture.type != 'IMAGE':
                        validPath=True
                else:
                    validPath=False
                if(t and t.use and validPath and
                   (t.use_map_specular or t.use_map_raymir or t.use_map_normal or t.use_map_alpha)):
                    special_texture_found = True
                    continue  # Some texture found
    
            if special_texture_found or colored_specular_found:
                # Level=1 Means No specular nor Mirror reflection
                povHasnoSpecularMaps(Level=1)
    
                # Level=3 Means Maximum Spec and Mirror
                povHasnoSpecularMaps(Level=3)
    
    Maurice Raybaud's avatar
    Maurice Raybaud committed
    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
    
    
    def exportPattern(texture, string_strip_hyphen):
        tex=texture
        pat = tex.pov
        PATname = "PAT_%s"%string_strip_hyphen(bpy.path.clean_name(tex.name))
        mappingDif = ("translate <%.4g,%.4g,%.4g> scale <%.4g,%.4g,%.4g>" % \
              (pat.tex_mov_x, pat.tex_mov_y, pat.tex_mov_z,
               1.0 / pat.tex_scale_x, 1.0 / pat.tex_scale_y, 1.0 / pat.tex_scale_z))
        texStrg=""
        def exportColorRamp(texture):
            tex=texture
            pat = tex.pov      
            colRampStrg="color_map {\n"
            numColor=0
            for el in tex.color_ramp.elements:
                numColor+=1
                pos = el.position
                col=el.color
                colR,colG,colB,colA = col[0],col[1],col[2],1-col[3]
                if pat.tex_pattern_type not in {'checker', 'hexagon', 'square', 'triangular', 'brick'} :
                    colRampStrg+="[%.4g color rgbf<%.4g,%.4g,%.4g,%.4g>] \n"%(pos,colR,colG,colB,colA)
                if pat.tex_pattern_type in {'brick','checker'} and numColor < 3:
                    colRampStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
                if pat.tex_pattern_type == 'hexagon' and numColor < 4 :
                    colRampStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
                if pat.tex_pattern_type == 'square' and numColor < 5 :
                    colRampStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
                if pat.tex_pattern_type == 'triangular' and numColor < 7 :
                    colRampStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
                          
            colRampStrg+="} \n"
            #end color map
            return colRampStrg
        #much work to be done here only defaults translated for now:
        #pov noise_generator 3 means perlin noise
        if pat.tex_pattern_type == 'emulator':
            texStrg+="pigment {\n"
            ####################### EMULATE BLENDER VORONOI TEXTURE ####################
            if tex.type == 'VORONOI':  
                texStrg+="crackle\n"
                texStrg+="    offset %.4g\n"%tex.nabla
                texStrg+="    form <%.4g,%.4g,%.4g>\n"%(tex.weight_1, tex.weight_2, tex.weight_3)
                if tex.distance_metric == 'DISTANCE':
                    texStrg+="    metric 2.5\n"          
                if tex.distance_metric == 'DISTANCE_SQUARED':
                    texStrg+="    metric 2.5\n"
                    texStrg+="    poly_wave 2\n"                
                if tex.distance_metric == 'MINKOVSKY': 
                    texStrg+="    metric %s\n"%tex.minkovsky_exponent             
                if tex.distance_metric == 'MINKOVSKY_FOUR': 
                    texStrg+="    metric 4\n"
                if tex.distance_metric == 'MINKOVSKY_HALF': 
                    texStrg+="    metric 0.5\n"
                if tex.distance_metric == 'CHEBYCHEV': 
                    texStrg+="    metric 10\n"
                if tex.distance_metric == 'MANHATTAN': 
                    texStrg+="    metric 1\n"
    
                if tex.color_mode == 'POSITION':
                    texStrg+="solid\n"
                texStrg+="scale 0.25\n"
                
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else:
                    texStrg+="color_map {\n"
                    texStrg+="[0 color rgbt<0,0,0,1>]\n"
                    texStrg+="[1 color rgbt<1,1,1,0>]\n" 
                    texStrg+="}\n"            
            ####################### EMULATE BLENDER CLOUDS TEXTURE ####################
            if tex.type == 'CLOUDS':  
                if tex.noise_type == 'SOFT_NOISE':
                    texStrg+="wrinkles\n"
                    texStrg+="scale 0.25\n"
                else:
                    texStrg+="granite\n"
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else:
                    texStrg+="color_map {\n"
                    texStrg+="[0 color rgbt<0,0,0,1>]\n"
                    texStrg+="[1 color rgbt<1,1,1,0>]\n" 
                    texStrg+="}\n"
            ####################### EMULATE BLENDER WOOD TEXTURE ####################
            if tex.type == 'WOOD':
                if tex.wood_type == 'RINGS':
                    texStrg+="wood\n"
                    texStrg+="scale 0.25\n"
                if tex.wood_type == 'RINGNOISE':
                    texStrg+="wood\n"
                    texStrg+="scale 0.25\n"
                    texStrg+="turbulence %.4g\n"%(tex.turbulence/100)
                if tex.wood_type == 'BANDS':
                    texStrg+="marble\n"
                    texStrg+="scale 0.25\n"
                    texStrg+="rotate <45,-45,45>\n"
                if tex.wood_type == 'BANDNOISE':
                    texStrg+="marble\n"
                    texStrg+="scale 0.25\n"
                    texStrg+="rotate <45,-45,45>\n"
                    texStrg+="turbulence %.4g\n"%(tex.turbulence/10)
                
                if tex.noise_basis_2 == 'SIN':
                    texStrg+="sine_wave\n"
                if tex.noise_basis_2 == 'TRI':
                    texStrg+="triangle_wave\n"
                if tex.noise_basis_2 == 'SAW':
                    texStrg+="ramp_wave\n"
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else:
                    texStrg+="color_map {\n"
                    texStrg+="[0 color rgbt<0,0,0,0>]\n"
                    texStrg+="[1 color rgbt<1,1,1,0>]\n" 
                    texStrg+="}\n"
            ####################### EMULATE BLENDER STUCCI TEXTURE ####################
            if tex.type == 'STUCCI':  
                texStrg+="bozo\n"
                texStrg+="scale 0.25\n"
                if tex.noise_type == 'HARD_NOISE':
                    texStrg+="triangle_wave\n"
                    if tex.use_color_ramp == True:
                        texStrg+=exportColorRamp(tex)
                    else:
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbf<1,1,1,0>]\n"
                        texStrg+="[1 color rgbt<0,0,0,1>]\n"
                        texStrg+="}\n"
                else:
                    if tex.use_color_ramp == True:
                        texStrg+=exportColorRamp(tex)
                    else:
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbf<0,0,0,1>]\n"
                        texStrg+="[1 color rgbt<1,1,1,0>]\n"
                        texStrg+="}\n"
            ####################### EMULATE BLENDER MAGIC TEXTURE ####################
            if tex.type == 'MAGIC':  
                texStrg+="leopard\n"
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else:
                    texStrg+="color_map {\n"
                    texStrg+="[0 color rgbt<1,1,1,0.5>]\n"
                    texStrg+="[0.25 color rgbf<0,1,0,0.75>]\n"
                    texStrg+="[0.5 color rgbf<0,0,1,0.75>]\n"
                    texStrg+="[0.75 color rgbf<1,0,1,0.75>]\n"
                    texStrg+="[1 color rgbf<0,1,0,0.75>]\n"
                    texStrg+="}\n"
                texStrg+="scale 0.1\n"            
            ####################### EMULATE BLENDER MARBLE TEXTURE ####################
            if tex.type == 'MARBLE':  
                texStrg+="marble\n"
                texStrg+="turbulence 0.5\n"
                texStrg+="noise_generator 3\n"
                texStrg+="scale 0.75\n"
                texStrg+="rotate <45,-45,45>\n"
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else:
                    if tex.marble_type == 'SOFT':
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbt<0,0,0,0>]\n"
                        texStrg+="[0.05 color rgbt<0,0,0,0>]\n"
                        texStrg+="[1 color rgbt<0.9,0.9,0.9,0>]\n"
                        texStrg+="}\n"
                    elif tex.marble_type == 'SHARP':
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbt<0,0,0,0>]\n"
                        texStrg+="[0.025 color rgbt<0,0,0,0>]\n"
                        texStrg+="[1 color rgbt<0.9,0.9,0.9,0>]\n"
                        texStrg+="}\n"
                    else:
                        texStrg+="[0 color rgbt<0,0,0,0>]\n"
                        texStrg+="[1 color rgbt<1,1,1,0>]\n"            
                        texStrg+="}\n"
                if tex.noise_basis_2 == 'SIN':
                    texStrg+="sine_wave\n"
                if tex.noise_basis_2 == 'TRI':
                    texStrg+="triangle_wave\n"
                if tex.noise_basis_2 == 'SAW':
                    texStrg+="ramp_wave\n"
            ####################### EMULATE BLENDER BLEND TEXTURE ####################
            if tex.type == 'BLEND':
                if tex.progression=='RADIAL':
                    texStrg+="radial\n"
                    if tex.use_flip_axis=='HORIZONTAL':
                        texStrg+="rotate x*90\n"
                    else:
                        texStrg+="rotate <-90,0,90>\n"
                    texStrg+="ramp_wave\n"
                elif tex.progression=='SPHERICAL':
                    texStrg+="spherical\n"
                    texStrg+="scale 3\n"
                    texStrg+="poly_wave 1\n"
                elif tex.progression=='QUADRATIC_SPHERE':
                    texStrg+="spherical\n"
                    texStrg+="scale 3\n"
                    texStrg+="    poly_wave 2\n"
                elif tex.progression=='DIAGONAL':
                    texStrg+="gradient <1,1,0>\n"
                    texStrg+="scale 3\n"
                elif tex.use_flip_axis=='HORIZONTAL':        
                    texStrg+="gradient x\n"
                    texStrg+="scale 2.01\n"
                elif tex.use_flip_axis=='VERTICAL':
                    texStrg+="gradient y\n"
                    texStrg+="scale 2.01\n"
                #texStrg+="ramp_wave\n"
                #texStrg+="frequency 0.5\n"
                texStrg+="phase 0.5\n"
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else:
                    texStrg+="color_map {\n"
                    texStrg+="[0 color rgbt<1,1,1,0>]\n"
                    texStrg+="[1 color rgbf<0,0,0,1>]\n"
                    texStrg+="}\n"
                if tex.progression == 'LINEAR': 
                    texStrg+="    poly_wave 1\n"
                if tex.progression == 'QUADRATIC': 
                    texStrg+="    poly_wave 2\n"
                if tex.progression == 'EASING':
                    texStrg+="    poly_wave 1.5\n"            
            ####################### EMULATE BLENDER MUSGRAVE TEXTURE ####################
            # if tex.type == 'MUSGRAVE':  
                # texStrg+="function{ f_ridged_mf( x, y, 0, 1, 2, 9, -0.5, 3,3 )*0.5}\n"
                # texStrg+="color_map {\n"
                # texStrg+="[0 color rgbf<0,0,0,1>]\n"
                # texStrg+="[1 color rgbf<1,1,1,0>]\n"
                # texStrg+="}\n"
            # simplified for now:
    
            if tex.type == 'MUSGRAVE':
                texStrg+="bozo scale 0.25 \n"
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else: 
                    texStrg+="color_map {[0.5 color rgbf<0,0,0,1>][1 color rgbt<1,1,1,0>]}ramp_wave \n"            
            ####################### EMULATE BLENDER DISTORTED NOISE TEXTURE ####################
            if tex.type == 'DISTORTED_NOISE':  
                texStrg+="average\n"
                texStrg+="  pigment_map {\n"
                texStrg+="  [1 bozo scale 0.25 turbulence %.4g\n" %tex.distortion
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else: 
                    texStrg+="color_map {\n"
                    texStrg+="[0 color rgbt<1,1,1,0>]\n"
                    texStrg+="[1 color rgbf<0,0,0,1>]\n"
                    texStrg+="}\n"
                texStrg+="]\n"
    
                if tex.noise_distortion == 'CELL_NOISE':
                    texStrg+="  [1 cells scale 0.1\n"
                    if tex.use_color_ramp == True:
                        texStrg+=exportColorRamp(tex)
                    else: 
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbt<1,1,1,0>]\n"
                        texStrg+="[1 color rgbf<0,0,0,1>]\n"
                        texStrg+="}\n"
                    texStrg+="]\n"                
                if tex.noise_distortion=='VORONOI_CRACKLE':
                    texStrg+="  [1 crackle scale 0.25\n"
                    if tex.use_color_ramp == True:
                        texStrg+=exportColorRamp(tex)
                    else: 
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbt<1,1,1,0>]\n"
                        texStrg+="[1 color rgbf<0,0,0,1>]\n"
                        texStrg+="}\n"
                    texStrg+="]\n"                
                if tex.noise_distortion in ['VORONOI_F1','VORONOI_F2','VORONOI_F3','VORONOI_F4','VORONOI_F2_F1']:
                    texStrg+="  [1 crackle metric 2.5 scale 0.25 turbulence %.4g\n" %(tex.distortion/2)
                    if tex.use_color_ramp == True:
                        texStrg+=exportColorRamp(tex)
                    else: 
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbt<1,1,1,0>]\n"
                        texStrg+="[1 color rgbf<0,0,0,1>]\n"
                        texStrg+="}\n"
                    texStrg+="]\n"                
                else:
                    texStrg+="  [1 wrinkles scale 0.25\n" 
                    if tex.use_color_ramp == True:
                        texStrg+=exportColorRamp(tex)
                    else: 
                        texStrg+="color_map {\n"
                        texStrg+="[0 color rgbt<1,1,1,0>]\n"
                        texStrg+="[1 color rgbf<0,0,0,1>]\n"
                        texStrg+="}\n"
                    texStrg+="]\n"
                texStrg+="  }\n"
            ####################### EMULATE BLENDER NOISE TEXTURE ####################
            if tex.type == 'NOISE':  
                texStrg+="cells\n"
                texStrg+="turbulence 3\n"
                texStrg+="omega 3\n"
                if tex.use_color_ramp == True:
                    texStrg+=exportColorRamp(tex)
                else: 
                    texStrg+="color_map {\n"
                    texStrg+="[0.75 color rgb<0,0,0,>]\n"
                    texStrg+="[1 color rgb<1,1,1,>]\n"
                    texStrg+="}\n"
    
            ####################### IGNORE OTHER BLENDER TEXTURE ####################
            else: #non translated textures
                pass
            texStrg+="}\n\n"            
    
            texStrg+="#declare f%s=\n"%PATname
            texStrg+="function{pigment{%s}}\n"%PATname       
            texStrg+="\n"
            
        else:
            texStrg+="pigment {\n"
            texStrg+="%s\n"%pat.tex_pattern_type
            if pat.tex_pattern_type == 'agate': 
                texStrg+="agate_turb %.4g\n"%pat.modifier_turbulence                           
            if pat.tex_pattern_type in {'spiral1', 'spiral2', 'tiling'}: 
                texStrg+="%s\n"%pat.modifier_numbers
            if pat.tex_pattern_type == 'quilted': 
                texStrg+="control0 %s control1 %s\n"%(pat.modifier_control0, pat.modifier_control1)                           
            if pat.tex_pattern_type == 'mandel': 
                texStrg+="%s exponent %s \n"%(pat.f_iter, pat.f_exponent)  
            if pat.tex_pattern_type == 'julia': 
                texStrg+="<%.4g, %.4g> %s exponent %s \n"%(pat.julia_complex_1, pat.julia_complex_2, pat.f_iter, pat.f_exponent)   
            if pat.tex_pattern_type == 'magnet' and pat.magnet_style == 'mandel': 
                texStrg+="%s mandel %s \n"%(pat.magnet_type, pat.f_iter)
            if pat.tex_pattern_type == 'magnet' and pat.magnet_style == 'julia':  
                texStrg+="%s julia <%.4g, %.4g> %s\n"%(pat.magnet_type, pat.julia_complex_1, pat.julia_complex_2, pat.f_iter) 
            if pat.tex_pattern_type in {'mandel', 'julia', 'magnet'}:
                texStrg+="interior %s, %.4g\n"%(pat.f_ior, pat.f_ior_fac) 
                texStrg+="exterior %s, %.4g\n"%(pat.f_eor, pat.f_eor_fac)
            if pat.tex_pattern_type == 'gradient': 
                texStrg+="<%s, %s, %s> \n"%(pat.grad_orient_x, pat.grad_orient_y, pat.grad_orient_z)
            if pat.tex_pattern_type == 'pavement':
                numTiles=pat.pave_tiles
                numPattern=1
                if pat.pave_sides == '4' and pat.pave_tiles == 3: 
                     numPattern = pat.pave_pat_2
                if pat.pave_sides == '6' and pat.pave_tiles == 3: 
                    numPattern = pat.pave_pat_3
                if pat.pave_sides == '3' and pat.pave_tiles == 4: 
                    numPattern = pat.pave_pat_3
                if pat.pave_sides == '3' and pat.pave_tiles == 5: 
                    numPattern = pat.pave_pat_4
                if pat.pave_sides == '4' and pat.pave_tiles == 4: 
                    numPattern = pat.pave_pat_5
                if pat.pave_sides == '6' and pat.pave_tiles == 4: 
                    numPattern = pat.pave_pat_7
                if pat.pave_sides == '4' and pat.pave_tiles == 5: 
                    numPattern = pat.pave_pat_12
                if pat.pave_sides == '3' and pat.pave_tiles == 6: 
                    numPattern = pat.pave_pat_12
                if pat.pave_sides == '6' and pat.pave_tiles == 5: 
                    numPattern = pat.pave_pat_22
                if pat.pave_sides == '4' and pat.pave_tiles == 6: 
                    numPattern = pat.pave_pat_35
                if pat.pave_sides == '6' and pat.pave_tiles == 6: 
                    numTiles = 5                                
                texStrg+="number_of_sides %s number_of_tiles %s pattern %s form %s \n"%(pat.pave_sides, numTiles, numPattern, pat.pave_form)
            ################ functions #####################################################################################################
            if pat.tex_pattern_type == 'function':                 
                texStrg+="{ %s"%pat.func_list
                texStrg+="(x"
                if pat.func_plus_x != "NONE":
                    if pat.func_plus_x =='increase':
                        texStrg+="*"                                    
                    if pat.func_plus_x =='plus':
                        texStrg+="+"
                    texStrg+="%.4g"%pat.func_x
                texStrg+=",y"
                if pat.func_plus_y != "NONE":
                    if pat.func_plus_y =='increase':
                        texStrg+="*"                                   
                    if pat.func_plus_y =='plus':
                        texStrg+="+"
                    texStrg+="%.4g"%pat.func_y
                texStrg+=",z"
                if pat.func_plus_z != "NONE":
                    if pat.func_plus_z =='increase':
                        texStrg+="*"                                    
                    if pat.func_plus_z =='plus':
                        texStrg+="+"
                    texStrg+="%.4g"%pat.func_z
                sort = -1
                if pat.func_list in {"f_comma","f_crossed_trough","f_cubic_saddle","f_cushion","f_devils_curve",
                                     "f_enneper","f_glob","f_heart","f_hex_x","f_hex_y","f_hunt_surface",
                                     "f_klein_bottle","f_kummer_surface_v1","f_lemniscate_of_gerono","f_mitre",
                                     "f_nodal_cubic","f_noise_generator","f_odd","f_paraboloid","f_pillow",
                                     "f_piriform","f_quantum","f_quartic_paraboloid","f_quartic_saddle",
                                     "f_sphere","f_steiners_roman","f_torus_gumdrop","f_umbrella"}:
                    sort = 0
                if pat.func_list in {"f_bicorn","f_bifolia","f_boy_surface","f_superellipsoid","f_torus"}:
                    sort = 1
                if pat.func_list in {"f_ellipsoid","f_folium_surface","f_hyperbolic_torus",
                                     "f_kampyle_of_eudoxus","f_parabolic_torus","f_quartic_cylinder","f_torus2"}:
                    sort = 2
                if pat.func_list in {"f_blob2","f_cross_ellipsoids","f_flange_cover","f_isect_ellipsoids",
                                     "f_kummer_surface_v2","f_ovals_of_cassini","f_rounded_box","f_spikes_2d","f_strophoid"}:
                    sort = 3
                if pat.func_list in {"f_algbr_cyl1","f_algbr_cyl2","f_algbr_cyl3","f_algbr_cyl4","f_blob","f_mesh1","f_poly4","f_spikes"}:
                    sort = 4
                if pat.func_list in {"f_devils_curve_2d","f_dupin_cyclid","f_folium_surface_2d","f_hetero_mf","f_kampyle_of_eudoxus_2d",
                                     "f_lemniscate_of_gerono_2d","f_polytubes","f_ridge","f_ridged_mf","f_spiral","f_witch_of_agnesi"}:
                    sort = 5
                if pat.func_list in {"f_helix1","f_helix2","f_piriform_2d","f_strophoid_2d"}:
                    sort = 6
                if pat.func_list == "f_helical_torus":
                    sort = 7
                if sort > -1:
                    texStrg+=",%.4g"%pat.func_P0
                if sort > 0:
                    texStrg+=",%.4g"%pat.func_P1
                if sort > 1:
                    texStrg+=",%.4g"%pat.func_P2
                if sort > 2:
                    texStrg+=",%.4g"%pat.func_P3
                if sort > 3:
                    texStrg+=",%.4g"%pat.func_P4
                if sort > 4:
                    texStrg+=",%.4g"%pat.func_P5
                if sort > 5:
                    texStrg+=",%.4g"%pat.func_P6
                if sort > 6:
                    texStrg+=",%.4g"%pat.func_P7
                    texStrg+=",%.4g"%pat.func_P8
                    texStrg+=",%.4g"%pat.func_P9
                texStrg+=")}\n"
            ############## end functions ###############################################################
            if pat.tex_pattern_type not in {'checker', 'hexagon', 'square', 'triangular', 'brick'}:                        
                texStrg+="color_map {\n"
            numColor=0
            if tex.use_color_ramp == True:
                for el in tex.color_ramp.elements:
                    numColor+=1
                    pos = el.position
                    col=el.color
                    colR,colG,colB,colA = col[0],col[1],col[2],1-col[3]
                    if pat.tex_pattern_type not in {'checker', 'hexagon', 'square', 'triangular', 'brick'} :
                        texStrg+="[%.4g color rgbf<%.4g,%.4g,%.4g,%.4g>] \n"%(pos,colR,colG,colB,colA)
                    if pat.tex_pattern_type in {'brick','checker'} and numColor < 3:
                        texStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
                    if pat.tex_pattern_type == 'hexagon' and numColor < 4 :
                        texStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
                    if pat.tex_pattern_type == 'square' and numColor < 5 :
                        texStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
                    if pat.tex_pattern_type == 'triangular' and numColor < 7 :
                        texStrg+="color rgbf<%.4g,%.4g,%.4g,%.4g> \n"%(colR,colG,colB,colA)
            else:
                texStrg+="[0 color rgbf<0,0,0,1>]\n"
                texStrg+="[1 color rgbf<1,1,1,0>]\n"
            if pat.tex_pattern_type not in {'checker', 'hexagon', 'square', 'triangular', 'brick'} :                        
                texStrg+="} \n"                       
            if pat.tex_pattern_type == 'brick':                        
                texStrg+="brick_size <%.4g, %.4g, %.4g> mortar %.4g \n"%(pat.brick_size_x, pat.brick_size_y, pat.brick_size_z, pat.brick_mortar)
            texStrg+="%s \n"%mappingDif
            texStrg+="rotate <%.4g,%.4g,%.4g> \n"%(pat.tex_rot_x, pat.tex_rot_y, pat.tex_rot_z)
            texStrg+="turbulence <%.4g,%.4g,%.4g> \n"%(pat.warp_turbulence_x, pat.warp_turbulence_y, pat.warp_turbulence_z)
            texStrg+="octaves %s \n"%pat.modifier_octaves
            texStrg+="lambda %.4g \n"%pat.modifier_lambda
            texStrg+="omega %.4g \n"%pat.modifier_omega
            texStrg+="frequency %.4g \n"%pat.modifier_frequency
            texStrg+="phase %.4g \n"%pat.modifier_phase                       
            texStrg+="}\n\n"
            texStrg+="#declare f%s=\n"%PATname
            texStrg+="function{pigment{%s}}\n"%PATname       
            texStrg+="\n"
        return(texStrg)
        
        
    def writeTextureInfluence(mater, materialNames, LocalMaterialNames, path_image,
                                imageFormat, imgMap, imgMapTransforms, file,
                                tabWrite, string_strip_hyphen, safety, col):
        material_finish = materialNames[mater.name]                        
        if mater.use_transparency:
            trans = 1.0 - mater.alpha
        else:
            trans = 0.0                            
        if (mater.specular_color.s == 0.0):
            colored_specular_found = False
        else:
            colored_specular_found = True
    
        if mater.use_transparency and mater.transparency_method == 'RAYTRACE':
            povFilter = mater.raytrace_transparency.filter * (1.0 - mater.alpha)
            trans = (1.0 - mater.alpha) - povFilter
        else:
            povFilter = 0.0
            
        ##############SF
        texturesDif = ""
        texturesSpec = ""
        texturesNorm = ""
        texturesAlpha = ""
        #proceduralFlag=False
        for t in mater.texture_slots:
            if t and t.use and t.texture.type != 'IMAGE' and t.texture.type != 'NONE':
                proceduralFlag=True
                image_filename = "PAT_%s"%string_strip_hyphen(bpy.path.clean_name(t.texture.name))
                if image_filename:
                    if t.use_map_color_diffuse:
                        texturesDif = image_filename
                        # colvalue = t.default_value  # UNUSED
                        t_dif = t
                        if t_dif.texture.pov.tex_gamma_enable:
                            imgGamma = (" gamma %.3g " % t_dif.texture.pov.tex_gamma_value)
                    if t.use_map_specular or t.use_map_raymir:
                        texturesSpec = image_filename
                        # colvalue = t.default_value  # UNUSED
                        t_spec = t
                    if t.use_map_normal:
                        texturesNorm = image_filename
                        # colvalue = t.normal_factor * 10.0  # UNUSED
                        #textNormName=t.texture.image.name + ".normal"
                        #was the above used? --MR
                        t_nor = t
                    if t.use_map_alpha:
                        texturesAlpha = image_filename
                        # colvalue = t.alpha_factor * 10.0  # UNUSED
                        #textDispName=t.texture.image.name + ".displ"
                        #was the above used? --MR
                        t_alpha = t
    
            if t and t.texture.type == 'IMAGE' and t.use and t.texture.image and t.texture.pov.tex_pattern_type == 'emulator':
                proceduralFlag=False
                if t.texture.image.packed_file:
                    orig_image_filename=t.texture.image.filepath_raw
                    unpackedfilename= os.path.join(preview_dir,("unpacked_img_"+(string_strip_hyphen(bpy.path.clean_name(t.texture.name)))))
                    if not os.path.exists(unpackedfilename):
                        # record which images that were newly copied and can be safely
                        # cleaned up
                        unpacked_images.append(unpackedfilename)                                            
                    t.texture.image.filepath_raw=unpackedfilename
                    t.texture.image.save()
                    image_filename = unpackedfilename
                    t.texture.image.filepath_raw=orig_image_filename
                else:
                    image_filename = path_image(t.texture.image)
                # IMAGE SEQUENCE BEGINS
                if image_filename:
                    if bpy.data.images[t.texture.image.name].source == 'SEQUENCE':
                        korvaa = "." + str(bpy.data.textures[t.texture.name].image_user.frame_offset + 1).zfill(3) + "."
                        image_filename = image_filename.replace(".001.", korvaa)
                        print(" seq debug ")
                        print(image_filename)
                # IMAGE SEQUENCE ENDS
                imgGamma = ""
                if image_filename:
                    if t.use_map_color_diffuse:
                        texturesDif = image_filename
                        # colvalue = t.default_value  # UNUSED
                        t_dif = t
                        if t_dif.texture.pov.tex_gamma_enable:
                            imgGamma = (" gamma %.3g " % t_dif.texture.pov.tex_gamma_value)
                    if t.use_map_specular or t.use_map_raymir:
                        texturesSpec = image_filename
                        # colvalue = t.default_value  # UNUSED
                        t_spec = t
                    if t.use_map_normal:
                        texturesNorm = image_filename
                        # colvalue = t.normal_factor * 10.0  # UNUSED
                        #textNormName=t.texture.image.name + ".normal"
                        #was the above used? --MR
                        t_nor = t
                    if t.use_map_alpha:
                        texturesAlpha = image_filename
                        # colvalue = t.alpha_factor * 10.0  # UNUSED
                        #textDispName=t.texture.image.name + ".displ"
                        #was the above used? --MR
                        t_alpha = t
    
        ####################################################################################
    
    
        file.write("\n")
        # THIS AREA NEEDS TO LEAVE THE TEXTURE OPEN UNTIL ALL MAPS ARE WRITTEN DOWN.
        # --MR
        currentMatName = string_strip_hyphen(materialNames[mater.name])
        LocalMaterialNames.append(currentMatName)
        file.write("\n#declare MAT_%s = \ntexture{\n" % currentMatName)
    
        ################################################################################
        
        if mater.pov.replacement_text != "":
            file.write("%s\n" % mater.pov.replacement_text)
        #################################################################################
        if mater.diffuse_shader == 'MINNAERT':
            tabWrite("\n")
            tabWrite("aoi\n")
            tabWrite("texture_map {\n")
            tabWrite("[%.3g finish {diffuse %.3g}]\n" % \
                     (mater.darkness / 2.0, 2.0 - mater.darkness))
            tabWrite("[%.3g\n" % (1.0 - (mater.darkness / 2.0)))
    
        if mater.diffuse_shader == 'FRESNEL':
            # For FRESNEL diffuse in POV, we'll layer slope patterned textures
            # with lamp vector as the slope vector and nest one slope per lamp
            # into each texture map's entry.
    
            c = 1
            while (c <= lampCount):
                tabWrite("slope { lampTarget%s }\n" % (c))
                tabWrite("texture_map {\n")
                # Diffuse Fresnel value and factor go up to five,
                # other kind of values needed: used the number 5 below to remap
                tabWrite("[%.3g finish {diffuse %.3g}]\n" % \
                         ((5.0 - mater.diffuse_fresnel) / 5,
                          (mater.diffuse_intensity *
                           ((5.0 - mater.diffuse_fresnel_factor) / 5))))
                tabWrite("[%.3g\n" % ((mater.diffuse_fresnel_factor / 5) *
                                      (mater.diffuse_fresnel / 5.0)))
                c += 1
    
        # if shader is a 'FRESNEL' or 'MINNAERT': slope pigment pattern or aoi
        # and texture map above, the rest below as one of its entry
    
        if texturesSpec != "" or texturesAlpha != "":
            if texturesSpec != "":
                # tabWrite("\n")
                tabWrite("pigment_pattern {\n")
                if texturesSpec and texturesSpec.startswith("PAT_"):
                    tabWrite("function{f%s(x,y,z).grey}" %texturesSpec) 
                else:
                    # POV-Ray "scale" is not a number of repetitions factor, but its
                    # inverse, a standard scale factor.
                    # Offset seems needed relatively to scale so probably center of the
                    # scale is not the same in blender and POV
                    mappingSpec =imgMapTransforms(t_spec)
                    # mappingSpec = "translate <%.4g,%.4g,%.4g> scale <%.4g,%.4g,%.4g>\n" % \
                                  # (-t_spec.offset.x, t_spec.offset.y, t_spec.offset.z,
                                   # 1.0 / t_spec.scale.x, 1.0 / t_spec.scale.y,
                                   # 1.0 / t_spec.scale.z)
                    tabWrite("uv_mapping image_map{%s \"%s\" %s}\n" % \
                             (imageFormat(texturesSpec), texturesSpec, imgMap(t_spec)))
                    tabWrite("%s\n" % mappingSpec)
                tabWrite("}\n")
                tabWrite("texture_map {\n")
                tabWrite("[0 \n")
    
            if texturesDif == "":
                if texturesAlpha != "":
                    tabWrite("\n")
                    if texturesAlpha and texturesAlpha.startswith("PAT_"):
                        tabWrite("function{f%s(x,y,z).transmit}\n" %texturesAlpha) 
                    else:
                        # POV-Ray "scale" is not a number of repetitions factor, but its
                        # inverse, a standard scale factor.
                        # Offset seems needed relatively to scale so probably center of the
                        # scale is not the same in blender and POV
                        mappingAlpha = imgMapTransforms(t_alpha)
                        # mappingAlpha = " translate <%.4g, %.4g, %.4g> " \
                                       # "scale <%.4g, %.4g, %.4g>\n" % \
                                       # (-t_alpha.offset.x, -t_alpha.offset.y,
                                        # t_alpha.offset.z, 1.0 / t_alpha.scale.x,
                                        # 1.0 / t_alpha.scale.y, 1.0 / t_alpha.scale.z)
                        tabWrite("pigment {pigment_pattern {uv_mapping image_map" \
                                 "{%s \"%s\" %s}%s" % \
                                 (imageFormat(texturesAlpha), texturesAlpha,
                                  imgMap(t_alpha), mappingAlpha))
                    tabWrite("}\n")
                    tabWrite("pigment_map {\n")
                    tabWrite("[0 color rgbft<0,0,0,1,1>]\n")
                    tabWrite("[1 color rgbft<%.3g, %.3g, %.3g, %.3g, %.3g>]\n" % \
                             (col[0], col[1], col[2], povFilter, trans))
                    tabWrite("}\n")
                    tabWrite("}\n")
    
                else:
    
                    tabWrite("pigment {rgbft<%.3g, %.3g, %.3g, %.3g, %.3g>}\n" % \
                             (col[0], col[1], col[2], povFilter, trans))
    
                if texturesSpec != "":
                    # Level 1 is no specular
                    tabWrite("finish {%s}\n" % (safety(material_finish, Level=1)))
    
                else:
                    # Level 2 is translated spec
                    tabWrite("finish {%s}\n" % (safety(material_finish, Level=2)))
    
            else:
                mappingDif = imgMapTransforms(t_dif)
    
                if texturesAlpha != "":
                    mappingAlpha = imgMapTransforms(t_alpha)
                    # mappingAlpha = " translate <%.4g,%.4g,%.4g> " \
                                   # "scale <%.4g,%.4g,%.4g>" % \
                                   # (-t_alpha.offset.x, -t_alpha.offset.y,
                                    # t_alpha.offset.z, 1.0 / t_alpha.scale.x,
                                    # 1.0 / t_alpha.scale.y, 1.0 / t_alpha.scale.z)
                    tabWrite("pigment {\n")
                    tabWrite("pigment_pattern {\n")
                    if texturesAlpha and texturesAlpha.startswith("PAT_"):
                        tabWrite("function{f%s(x,y,z).transmit}\n" %texturesAlpha) 
                    else:
                        tabWrite("uv_mapping image_map{%s \"%s\" %s}%s}\n" % \
                                 (imageFormat(texturesAlpha), texturesAlpha,
                                  imgMap(t_alpha), mappingAlpha))
                    tabWrite("pigment_map {\n")
                    tabWrite("[0 color rgbft<0,0,0,1,1>]\n")
                    #if texturesAlpha and texturesAlpha.startswith("PAT_"):
                        #tabWrite("[1 pigment{%s}]\n" %texturesDif) 
                    if texturesDif and not texturesDif.startswith("PAT_"):
                        tabWrite("[1 uv_mapping image_map {%s \"%s\" %s} %s]\n" % \
                                 (imageFormat(texturesDif), texturesDif,
                                  (imgGamma + imgMap(t_dif)), mappingDif))
                    elif texturesDif and texturesDif.startswith("PAT_"):
                        tabWrite("[1 %s]\n" %texturesDif)                                                          
                    tabWrite("}\n")
                    tabWrite("}\n")
                    if texturesAlpha and texturesAlpha.startswith("PAT_"):
                        tabWrite("}\n")
    
                else:
                    if texturesDif and texturesDif.startswith("PAT_"):
                        tabWrite("pigment{%s}\n" %texturesDif) 
                    else:
                        tabWrite("pigment {uv_mapping image_map {%s \"%s\" %s}%s}\n" % \
                                 (imageFormat(texturesDif), texturesDif,
                                  (imgGamma + imgMap(t_dif)), mappingDif))
    
                if texturesSpec != "":
                    # Level 1 is no specular
                    tabWrite("finish {%s}\n" % (safety(material_finish, Level=1)))
    
                else:
                    # Level 2 is translated specular
                    tabWrite("finish {%s}\n" % (safety(material_finish, Level=2)))
    
                ## scale 1 rotate y*0
                #imageMap = ("{image_map {%s \"%s\" %s }\n" % \
                #            (imageFormat(textures),textures,imgMap(t_dif)))
                #tabWrite("uv_mapping pigment %s} %s finish {%s}\n" % \
                #         (imageMap,mapping,safety(material_finish)))
                #tabWrite("pigment {uv_mapping image_map {%s \"%s\" %s}%s} " \
                #         "finish {%s}\n" % \
                #         (imageFormat(texturesDif), texturesDif, imgMap(t_dif),
                #          mappingDif, safety(material_finish)))
            if texturesNorm != "":
                ## scale 1 rotate y*0
                # POV-Ray "scale" is not a number of repetitions factor, but its
                # inverse, a standard scale factor.
                # Offset seems needed relatively to scale so probably center of the
                # scale is not the same in blender and POV
                mappingNor =imgMapTransforms(t_nor)
                # mappingNor = " translate <%.4g,%.4g,%.4g> scale <%.4g,%.4g,%.4g>" % \
                             # (-t_nor.offset.x, -t_nor.offset.y, t_nor.offset.z,
                              # 1.0 / t_nor.scale.x, 1.0 / t_nor.scale.y,
                              # 1.0 / t_nor.scale.z)
                #imageMapNor = ("{bump_map {%s \"%s\" %s mapping}" % \
                #               (imageFormat(texturesNorm),texturesNorm,imgMap(t_nor)))
                #We were not using the above maybe we should?
                if texturesNorm and texturesNorm.startswith("PAT_"):
                    tabWrite("normal{function{f%s(x,y,z).grey} bump_size %.4g}\n" %(texturesNorm, t_nor.normal_factor * 10)) 
                else:
                    tabWrite("normal {uv_mapping bump_map " \
                             "{%s \"%s\" %s  bump_size %.4g }%s}\n" % \
                             (imageFormat(texturesNorm), texturesNorm, imgMap(t_nor),
                              t_nor.normal_factor * 10, mappingNor))
            if texturesSpec != "":
                tabWrite("]\n")
            ##################Second index for mapping specular max value###############
                tabWrite("[1 \n")