Here's a "Material Library" for the lazy people out there who does not want to use OSL.
LinearFalloff_vray.zip
Look into his eyes !
LinearFalloff_vray.zip
/* bitmapFalloff_v001 created 2015-04-23 by Rens Heeren mail@rensheeren.com Linear falloff code by Wobi/Vlado: http://forums.chaosgroup.com/showthread.php?82438-Determining-correct-falloff/page2 This is a simple OSL tex that will allow you to use a linear bitmap gradient as the texture to drive a reflection. Usage (V-Ray): 1. create a reflection gradient bitmap using rh_fresnelGradient_v001.ms 2. load in the bitmap with gamma 1.0 as the gradientBitmap. 3. Place this OSL texture as your reflection map in your (V-Ray) material. 4. Switch off Fresnel in the material as the bitmap already has the Fresnel information. */ shader bitmapFalloff_v001 ( string gradientBitmap = "", output color Col_Out = color(0.5) ) { float fPos = acos (1.0 - (1 - (dot(normalize(N), normalize(I))* -1)))/(M_PI * 0.5); color cColor = texture(gradientBitmap, fPos, 0); Col_Out = cColor; }
/* Complex Fresnel Gradient v001 Created 2015-04-23 - Rens Heeren mail@rensheeren.com History: 2015-04-23 - first version (rh) Creates a gradient bitmap for use in the reflection slot of a material. Left = 0 degrees, right = 90 degrees from normal incidence, linear It allows for a different IOR for the first medium, usually this would be air with IOR 1.0. With a different IOR you could for example simulate materials under water. Polarisation is also supported, 0 = parallel, 1 = perpendicular, 0.5 unpolarised, maybe of interest if you'd like to simulate polarisation filters. Fresnel function based in part on David Bergström's mathlab code, link unknown. http://refractiveindex.info/ example Gold: Red / 650nm / #FF0000 Green / 532nm / #00FF00 Blue / 473nm / #0000FF NR = 0.18309 KR = 3.4241 NG = 0.54410 KG = 2.1404 NB = 1.1715 KB = 1.7544 */ -- DIALOG CLOSE try (destroyDialog rltCxFrGrad) catch() -- DEF iBHeight = 30 iBWidth = 800 aCols = #() fn fnCxFresnel fNA fNB fKB fInDeg fPol = ( /* testing fInDeg = 45. fNA = 1.0 fNB = .27 fKB = 2.77 fPol = 0.5 */ fSinDeg = sin fInDeg fCosDeg = cos fInDeg fTanDeg = tan fInDeg fSinDeg2 = fSinDeg * fSinDeg fCosDeg2 = fCosDeg * fCosDeg fTanDeg2 = fTanDeg * fTanDeg fNA2 = fNA * fNA fNB2 = fNB * fNB fKB2 = fKB * fKB f1 = (fNB2 - fKB2 - fNA2 * fSinDeg2) fP = sqrt (.5 * (sqrt ((pow f1 2) + 4 * fNB2 * fKB2) + f1)) fQ = sqrt (.5* (sqrt ((pow f1 2) + 4 * fNB2 * fKB2) - f1)) fS = ((pow (fNA * fCosDeg - fP) 2.0) + fQ * fQ) / ((pow (fNA * fCosDeg + fP) 2) + fQ * fQ) fR = ((pow (fP - fNA * fSinDeg * fTanDeg) 2) + fQ * fQ) / ((pow (fP + fNA * fSinDeg * fTanDeg) 2.0) + fQ * fQ) * fS fOut = (fS * fPol) + (fR * (1-fPol)) fOut ) /* fn fnSetPixels oBitmap p2Pos aCols = ( setPixels oBitmap p2Pos aCols ) */ -- ROLLOUT rollout rltCxFrGrad "RH Fresnel Gradient v001" ( label lblRed "Red" align:#left spinner spnNAR "N Outside:" range:[-50.0,50.0,1.0] type:#float across:3 spinner spnNBR "N:" range:[-50.0,50.0,1.331] type:#float spinner spnKBR "K:" range:[-50.0,50.0,0.0] type:#float label lbGreen "Green" align:#left spinner spnNAG "N Outside:" range:[-50.0,50.0,1.0] type:#float across:3 spinner spnNBG "N:" range:[-50.0,50.0,1.334] type:#float spinner spnKBG "K:" range:[-50.0,50.0,0.0] type:#float label lblBlue "Blue" align:#left spinner spnNAB "N Outside:" range:[-50.0,50.0,1.0] type:#float across:3 spinner spnNBB "N:" range:[-50.0,50.0,1.336] type:#float spinner spnKBB "K:" range:[-50.0,50.0,0.0] type:#float label lblEmpty1 "" spinner spnPol "Polarization:" range:[0.0,1.0,.5] type:#float align:#left label lblEmpty2 "" spinner spnWidth "Width:" range:[0,5000,800] type:#integer across:2 align:#left spinner spnHeight "Height:" range:[0,5000,30] type:#integer align:#left label lblEmpty3 "" button btnCreate "Create Bitmap" on btnCreate pressed do ( /* n = 0 fNAR = 1.0 fNBR = 1.333 fKBR = 0.0 */ fNAR = spnNAR.value fNBR = spnNBR.value fKBR = spnKBR.value fNAG = spnNAG.value fNBG = spnNBG.value fKBG = spnKBG.value fNAB = spnNAB.value fNBB = spnNBB.value fKBB = spnKBB.value fPol = spnPol.value iBWidth = spnWidth.value iBHeight = spnHeight.value oBitmap = bitmap iBWidth iBHeight gamma:1.0 hdr:true --color:cCol aCols = #() for n = 0 to (iBWidth-1) do ( fColR = (fnCxFresnel fNAR fNBR fKBR (n*(1./(iBWidth-1))*90) fPol)*255 fColG = (fnCxFresnel fNAG fNBG fKBG (n*(1./(iBWidth-1))*90) fPol)*255 fColB = (fnCxFresnel fNAB fNBB fKBB (n*(1./(iBWidth-1))*90) fPol)*255 --fCol = n*(1./(iBWidth-1))*255 cCol = color fColR fColG fColB append aCols cCol ) for i = 0 to (iBHeight-1) do ( p2Pos = [0,i] setPixels oBitmap p2Pos aCols ) display oBitmap ) ) -- DIALOG OPEN createDialog rltCxFrGrad 350 300
Comment