Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gabor_noise.osl « templates_osl « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c8615afb353a38655b7b370ea4f7bddfd630180 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

shader gabor_noise(
	point Point = P,
	vector Direction = vector(1, 0, 0),
	int Anisotropic = 0,
	float Bandwidth = 1.0,
	float Impulses = 16,
	output float Gabor = 0.8)
{
	Gabor = noise("gabor", Point,
	              "direction", Direction,
	              "anisotropic", Anisotropic,
	              "do_filter", 1, // Set to 0 to disable filtering/anti-aliasing 
	              "bandwidth", Bandwidth,
	              "impulses", Impulses);
}