-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcsg_combine.Rd
113 lines (110 loc) · 4.39 KB
/
csg_combine.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/csg_construct.R
\name{csg_combine}
\alias{csg_combine}
\title{CSG Combine}
\usage{
csg_combine(object1, object2, operation = "union", radius = 0.5)
}
\arguments{
\item{object1}{First CSG object}
\item{object2}{Second CSG object}
\item{operation}{Default `union`. Can be `union`, `subtract`, `intersection`, `blend`, `subtractblend`, or `mix`.}
\item{radius}{Default `0.5`. Blending radius.}
}
\value{
List describing the combined csg object in the scene.
}
\description{
Note: Subtract operations aren't commutative: the second object is subtracted from the first.
}
\examples{
if(run_documentation()) {
#Combine two spheres:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(x=-0.4,z=-0.4),
csg_sphere(x=0.4,z=0.4), operation="union"),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-3,5,10))
}
if(run_documentation()) {
#Subtract one sphere from another:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(x=-0.4,z=-0.4),
csg_sphere(x=0.4,z=0.4), operation="subtract"),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-3,5,10))
}
if(run_documentation()) {
#Get the intersection of two spheres:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(x=-0.4,z=-0.4),
csg_sphere(x=0.4,z=0.4), operation="intersection"),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-3,5,10))
}
if(run_documentation()) {
#Get the blended union of two spheres:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(x=-0.4,z=-0.4),
csg_sphere(x=0.4,z=0.4), operation="blend"),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-3,5,10))
}
if(run_documentation()) {
#Get the blended subtraction of two spheres:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(x=-0.4,z=-0.4),
csg_sphere(x=0.4,z=0.4), operation="subtractblend"),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-3,5,10))
}
if(run_documentation()) {
#Change the blending radius:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(x=-0.4,z=-0.4),
csg_sphere(x=0.4,z=0.4), operation="blend", radius=0.2),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-3,5,10))
}
if(run_documentation()) {
#Change the subtract blending radius:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(x=-0.4,z=-0.4),
csg_sphere(x=0.4,z=0.4), operation="subtractblend", radius=0.2),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-3,5,10))
}
if(run_documentation()) {
#Get the mixture of various objects:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_combine(
csg_sphere(),
csg_box(), operation="mix"),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(csg_object(csg_translate(csg_combine(
csg_box(),
csg_torus(), operation="mix"),z=-2.5),
material=glossy(color="red"))) \%>\%
add_object(csg_object(csg_translate(csg_combine(
csg_pyramid(),
csg_box(), operation="mix"),z=2.5),
material=glossy(color="green"))) \%>\%
add_object(sphere(y=10,x=-5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,lookfrom=c(-15,10,10))
}
}