-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathdiffuse.Rd
143 lines (119 loc) · 6.06 KB
/
diffuse.Rd
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/materials.R
\name{diffuse}
\alias{diffuse}
\title{Diffuse Material}
\usage{
diffuse(
color = "#ffffff",
checkercolor = NA,
checkerperiod = 3,
noise = 0,
noisephase = 0,
noiseintensity = 10,
noisecolor = "#000000",
gradient_color = NA,
gradient_transpose = FALSE,
gradient_point_start = NA,
gradient_point_end = NA,
gradient_type = "hsv",
image_texture = "",
image_repeat = 1,
alpha_texture = "",
bump_texture = "",
bump_intensity = 1,
fog = FALSE,
fogdensity = 0.01,
sigma = NULL,
importance_sample = FALSE
)
}
\arguments{
\item{color}{Default `white`. The color of the surface. Can be either
a hexadecimal code, R color string, or a numeric rgb vector listing three intensities between `0` and `1`.}
\item{checkercolor}{Default `NA`. If not `NA`, determines the secondary color of the checkered surface.
Can be either a hexadecimal code, or a numeric rgb vector listing three intensities between `0` and `1`.}
\item{checkerperiod}{Default `3`. The period of the checker pattern. Increasing this value makes the checker
pattern bigger, and decreasing it makes it smaller}
\item{noise}{Default `0`. If not `0`, covers the surface in a turbulent marble pattern. This value will determine
the amount of turbulence in the texture.}
\item{noisephase}{Default `0`. The phase of the noise. The noise will repeat at `360`.}
\item{noiseintensity}{Default `10`. Intensity of the noise.}
\item{noisecolor}{Default `#000000`. The secondary color of the noise pattern.
Can be either a hexadecimal code, or a numeric rgb vector listing three intensities between `0` and `1`.}
\item{gradient_color}{Default `NA`. If not `NA`, creates a secondary color for a linear gradient
between the this color and color specified in `color`. Direction is determined by `gradient_transpose`.}
\item{gradient_transpose}{Default `FALSE`. If `TRUE`, this will use the `v` coordinate texture instead
of the `u` coordinate texture to map the gradient.}
\item{gradient_point_start}{Default `NA`. If not `NA`, this changes the behavior from mapping texture coordinates to
mapping to world space coordinates. This should be a length-3 vector specifying the x,y, and z points where the gradient
begins with value `color`.}
\item{gradient_point_end}{Default `NA`. If not `NA`, this changes the behavior from mapping texture coordinates to
mapping to world space coordinates. This should be a length-3 vector specifying the x,y, and z points where the gradient
begins with value `gradient_color`.}
\item{gradient_type}{Default `hsv`. Colorspace to calculate the gradient. Alternative `rgb`.}
\item{image_texture}{Default `""`. A 3-layer RGB array or filename to be used as the texture on the surface of the object.}
\item{image_repeat}{Default `1`. Number of times to repeat the image across the surface.
`u` and `v` repeat amount can be set independently if user passes in a length-2 vector.}
\item{alpha_texture}{Default `""`. A matrix or filename (specifying a greyscale image) to
be used to specify the transparency.}
\item{bump_texture}{Default `""`. A matrix, array, or filename (specifying a greyscale image) to
be used to specify a bump map for the surface.}
\item{bump_intensity}{Default `1`. Intensity of the bump map. High values may lead to unphysical results.}
\item{fog}{Default `FALSE`. If `TRUE`, the object will be a volumetric scatterer.}
\item{fogdensity}{Default `0.01`. The density of the fog. Higher values will produce more opaque objects.}
\item{sigma}{Default `NULL`. A number between 0 and Infinity specifying the roughness of the surface using the Oren-Nayar microfacet model.
Higher numbers indicate a roughed surface, where sigma is the standard deviation of the microfacet orientation angle. When 0, this reverts
to the default lambertian behavior.}
\item{importance_sample}{Default `FALSE`. If `TRUE`, the object will be sampled explicitly during
the rendering process. If the object is particularly important in contributing to the light paths
in the image (e.g. light sources, refracting glass ball with caustics, metal objects concentrating light),
this will help with the convergence of the image.}
}
\value{
Single row of a tibble describing the diffuse material.
}
\description{
Diffuse Material
}
\examples{
#Generate the cornell box and add a single white sphere to the center
scene = generate_cornell() \%>\%
add_object(sphere(x=555/2,y=555/2,z=555/2,radius=555/8,material=diffuse()))
if(run_documentation()) {
render_scene(scene, lookfrom=c(278,278,-800),lookat = c(278,278,0), samples=16,
aperture=0, fov=40, ambient_light=FALSE, parallel=TRUE)
}
#Add a checkered rectangular cube below
scene = scene \%>\%
add_object(cube(x=555/2,y=555/8,z=555/2,xwidth=555/2,ywidth=555/4,zwidth=555/2,
material = diffuse(checkercolor="purple",checkerperiod=20)))
if(run_documentation()) {
render_scene(scene, lookfrom=c(278,278,-800),lookat = c(278,278,0), samples=16,
aperture=0, fov=40, ambient_light=FALSE, parallel=TRUE)
}
#Add a marbled sphere
scene = scene \%>\%
add_object(sphere(x=555/2+555/4,y=555/2,z=555/2,radius=555/8,
material = diffuse(noise=1/20)))
if(run_documentation()) {
render_scene(scene, lookfrom=c(278,278,-800),lookat = c(278,278,0), samples=16,
aperture=0, fov=40, ambient_light=FALSE, parallel=TRUE)
}
#Add an orange volumetric (fog) cube
scene = scene \%>\%
add_object(cube(x=555/2-555/4,y=555/2,z=555/2,xwidth=555/4,ywidth=555/4,zwidth=555/4,
material = diffuse(fog=TRUE, fogdensity=0.05,color="orange")))
if(run_documentation()) {
render_scene(scene, lookfrom=c(278,278,-800),lookat = c(278,278,0), samples=16,
aperture=0, fov=40, ambient_light=FALSE, parallel=TRUE)
}
#' #Add an line segment with a color gradient
scene = scene \%>\%
add_object(segment(start = c(555,450,450),end=c(0,450,450),radius = 50,
material = diffuse(color="#1f7326", gradient_color = "#a60d0d")))
if(run_documentation()) {
render_scene(scene, lookfrom=c(278,278,-800),lookat = c(278,278,0), samples=16,
aperture=0, fov=40, ambient_light=FALSE, parallel=TRUE)
}
}