The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
343 views

Issues implementing Schlick's approximation

So I'm working on creating refracting glass spheres for a ray tracer I am building and am attempting to implement Schlick's approximation for Fresnel refraction as per the suggestion of another user ...
0
votes
1answer
104 views

three.js reflectivity fresnel and focus

I test the reflectivity and I see color and intensity % but I don't see how to config the fresnel % (materials become more reflective (similar to a mirror) when viewed obliquely and become dull when ...
1
vote
1answer
69 views

SciPy: What are the arguments in `scipy.special.fresnel(x[, out1, out2])`?

I am trying to plot a clothoid function using SciPy. Here is the syntax for the Fresnel integrals but I cannot understand what are the arguments x, out1, out2 in scipy.special.fresnel(x[, out1, ...
1
vote
1answer
400 views

How do I combine Phong lighting with Fresnel dielectric reflection/transmission realistically?

UPDATE: I answered my own question about what illumination model to use, but now I need to know how to calculate the Fresnel terms for reflected and transmitted rays. I have a partially-implemented ...
4
votes
2answers
993 views

What is a good Javascript RDFa parser implementation?

I am looking to implement a client side RDFa based formatting for a web application. This would be similar to Mark Birbeck's ubiquity-rdfa project. Mark's project looks fantastic but it has at least ...
2
votes
2answers
5k views

How do you calculate the angle between two normals in glsl?

How do you calculate the angle between two normals in glsl? I am trying to add the fresnel effect to the outer edges of an object (combining that effect with phong shading), and I think that the angle ...