-
Notifications
You must be signed in to change notification settings - Fork 0
/
Viridis_spiral2.pov
49 lines (37 loc) · 989 Bytes
/
Viridis_spiral2.pov
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// ===== 1 ======= 2 ======= 3 ======= 4 ======= 5 ======= 6 ======= 7
/*
https://github.com/t-o-k/POV-Ray-color-maps
2022 Tor Olav Kristensen, http://subcube.com
This file is released under the CC0 license,
which can be found in the LICENSE file.
*/
// ===== 1 ======= 2 ======= 3 ======= 4 ======= 5 ======= 6 ======= 7
#version 3.7;
global_settings { assumed_gamma 1.0 }
#include "colors.inc"
#include "../Color_Maps.inc"
// ===== 1 ======= 2 ======= 3 ======= 4 ======= 5 ======= 6 ======= 7
sphere {
0*z, 0.5
texture {
pigment {
spiral2 5
color_map { ColorMap_Viridis }
scale 0.6*<1, 1, 1>
}
finish {
diffuse 0
emission color White
}
}
}
#declare AspectRatio = image_width/image_height;
camera {
orthographic
direction +z
right +AspectRatio*x
up +y
sky +y
location -z
}
// ===== 1 ======= 2 ======= 3 ======= 4 ======= 5 ======= 6 ======= 7