-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcsg_torus.Rd
58 lines (54 loc) · 2.01 KB
/
csg_torus.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/csg_construct.R
\name{csg_torus}
\alias{csg_torus}
\title{CSG Torus}
\usage{
csg_torus(x = 0, y = 0, z = 0, radius = 1, minor_radius = 0.5)
}
\arguments{
\item{x}{Default `0`. x-coordinate on the torus.}
\item{y}{Default `0`. y-coordinate on the torus.}
\item{z}{Default `0`. z-coordinate on the torus.}
\item{radius}{Default `1`. Torus radius.}
\item{minor_radius}{Default `0.5`. Cross section radius of the torus.}
}
\value{
List describing the torus in the scene.
}
\description{
CSG Torus
}
\examples{
if(run_documentation()) {
#Generate a torus:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_torus(), material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,lookfrom=c(0,5,10),fov=30)
}
if(run_documentation()) {
#Change the radius of the torus:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_torus(radius=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,lookfrom=c(0,5,10),fov=30)
}
if(run_documentation()) {
#Change the minor radius of the torus:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_torus(radius=2, minor_radius=0.25),
material=glossy(color="dodgerblue4"))) \%>\%
add_object(sphere(y=5,x=5,radius=3,material=light(intensity=10))) \%>\%
render_scene(clamp_value=10, samples=16,lookfrom=c(0,5,10),fov=30)
}
if(run_documentation()) {
#Generate a rotated torus in the Cornell Box
generate_cornell() \%>\%
add_object(csg_object(csg_rotate(
csg_torus(x=555/2,y=555/2,z=555/2,radius=100, minor_radius=50),
pivot_point = c(555/2,555/2,555/2), up =c(0,1,-1)),
material=glossy(color="dodgerblue4"))) \%>\%
render_scene(clamp_value=10, samples=16)
}
}