├── LICENSE ├── README.md ├── hair_scenes ├── meshes │ ├── eye.tga │ ├── head.tga │ ├── wCurly.hair │ ├── wWavyThin.hair │ ├── woman.mtl │ └── woman.obj ├── park.xml ├── park_montecarlo.xml ├── park_montecarlo_ref.png ├── park_ref.png ├── studio.xml ├── studio_ref.png ├── textures │ ├── park.hdr │ └── venice_sunset.exr ├── venice_sunset.xml └── venice_sunset_ref.png ├── include └── mitsuba │ └── render │ └── ior.h └── src ├── bsdfs ├── roughcylinder.cpp └── roughhair.cpp └── shapes ├── cylindersegment.cpp ├── cylindersegment.h ├── hair.cpp ├── hair.h ├── hairsegment.cpp └── hairsegment.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/README.md -------------------------------------------------------------------------------- /hair_scenes/meshes/eye.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/meshes/eye.tga -------------------------------------------------------------------------------- /hair_scenes/meshes/head.tga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/meshes/head.tga -------------------------------------------------------------------------------- /hair_scenes/meshes/wCurly.hair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/meshes/wCurly.hair -------------------------------------------------------------------------------- /hair_scenes/meshes/wWavyThin.hair: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/meshes/wWavyThin.hair -------------------------------------------------------------------------------- /hair_scenes/meshes/woman.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/meshes/woman.mtl -------------------------------------------------------------------------------- /hair_scenes/meshes/woman.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/meshes/woman.obj -------------------------------------------------------------------------------- /hair_scenes/park.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/park.xml -------------------------------------------------------------------------------- /hair_scenes/park_montecarlo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/park_montecarlo.xml -------------------------------------------------------------------------------- /hair_scenes/park_montecarlo_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/park_montecarlo_ref.png -------------------------------------------------------------------------------- /hair_scenes/park_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/park_ref.png -------------------------------------------------------------------------------- /hair_scenes/studio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/studio.xml -------------------------------------------------------------------------------- /hair_scenes/studio_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/studio_ref.png -------------------------------------------------------------------------------- /hair_scenes/textures/park.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/textures/park.hdr -------------------------------------------------------------------------------- /hair_scenes/textures/venice_sunset.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/textures/venice_sunset.exr -------------------------------------------------------------------------------- /hair_scenes/venice_sunset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/venice_sunset.xml -------------------------------------------------------------------------------- /hair_scenes/venice_sunset_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/hair_scenes/venice_sunset_ref.png -------------------------------------------------------------------------------- /include/mitsuba/render/ior.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/include/mitsuba/render/ior.h -------------------------------------------------------------------------------- /src/bsdfs/roughcylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/bsdfs/roughcylinder.cpp -------------------------------------------------------------------------------- /src/bsdfs/roughhair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/bsdfs/roughhair.cpp -------------------------------------------------------------------------------- /src/shapes/cylindersegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/shapes/cylindersegment.cpp -------------------------------------------------------------------------------- /src/shapes/cylindersegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/shapes/cylindersegment.h -------------------------------------------------------------------------------- /src/shapes/hair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/shapes/hair.cpp -------------------------------------------------------------------------------- /src/shapes/hair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/shapes/hair.h -------------------------------------------------------------------------------- /src/shapes/hairsegment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/shapes/hairsegment.cpp -------------------------------------------------------------------------------- /src/shapes/hairsegment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiverIntheSky/roughhair/HEAD/src/shapes/hairsegment.h --------------------------------------------------------------------------------