-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcsg_sphere.Rd
71 lines (68 loc) · 2.14 KB
/
csg_sphere.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/csg_construct.R
\name{csg_sphere}
\alias{csg_sphere}
\title{CSG Sphere}
\usage{
csg_sphere(x = 0, y = 0, z = 0, radius = 1)
}
\arguments{
\item{x}{Default `0`. x-coordinate of the center of the sphere.}
\item{y}{Default `0`. y-coordinate of the center of the sphere.}
\item{z}{Default `0`. z-coordinate of the center of the sphere.}
\item{radius}{Default `1`. Radius of the sphere.}
}
\value{
List describing the sphere in the scene.
}
\description{
CSG Sphere
}
\examples{
if(run_documentation()) {
#Generate a simple sphere:
generate_ground() \%>\%
add_object(csg_object(csg_sphere(),
material=glossy(color="purple"))) \%>\%
render_scene(clamp_value=10, samples=16)
}
if(run_documentation()) {
#Generate a bigger sphere in the cornell box.
generate_cornell() \%>\%
add_object(csg_object(csg_sphere(x=555/2,y=555/2,z=555/2,radius=100),
material=glossy(checkercolor="purple", checkerperiod=100))) \%>\%
render_scene(clamp_value=10, samples=16)
}
if(run_documentation()) {
#Combine two spheres of different sizes
generate_cornell() \%>\%
add_object(csg_object(
csg_combine(
csg_sphere(x=555/2,y=555/2-50,z=555/2,radius=100),
csg_sphere(x=555/2,y=555/2+50,z=555/2,radius=80)),
material=glossy(color="purple"))) \%>\%
render_scene(clamp_value=10, samples=16)
}
if(run_documentation()) {
#Subtract two spheres to create an indented region
generate_cornell() \%>\%
add_object(csg_object(
csg_combine(
csg_sphere(x=555/2,y=555/2-50,z=555/2,radius=100),
csg_sphere(x=555/2+30,y=555/2+20,z=555/2-90,radius=40),
operation="subtract"),
material=glossy(color="grey20"))) \%>\%
render_scene(clamp_value=10, samples=16)
}
if(run_documentation()) {
#Use csg_combine(operation="blend") to melt the two together
generate_cornell() \%>\%
add_object(csg_object(
csg_combine(
csg_sphere(x=555/2,y=555/2-50,z=555/2,radius=100),
csg_sphere(x=555/2,y=555/2+50,z=555/2,radius=80),
operation="blend", radius=20),
material=glossy(color="purple"))) \%>\%
render_scene(clamp_value=10, samples=16)
}
}