-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcsg_capsule.Rd
56 lines (54 loc) · 1.96 KB
/
csg_capsule.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/csg_construct.R
\name{csg_capsule}
\alias{csg_capsule}
\title{CSG Capsule}
\usage{
csg_capsule(start = c(0, 0, 0), end = c(0, 1, 0), radius = 1)
}
\arguments{
\item{start}{Default `c(0, 0, 0)`. Start point of the capsule, specifying `x`, `y`, `z`.}
\item{end}{Default `c(0, 1, 0)`. End point of the capsule, specifying `x`, `y`, `z`.}
\item{radius}{Default `1`. Capsule radius.}
}
\value{
List describing the capsule in the scene.
}
\description{
CSG Capsule
}
\examples{
if(run_documentation()) {
#Generate a basic capsule:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_capsule(radius=0.5),material=glossy(color="red"))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20)
}
if(run_documentation()) {
#Change the orientation by specifying a start and end
generate_ground(material=diffuse(color="dodgerblue4",checkercolor="grey10")) \%>\%
add_object(csg_object(csg_capsule(start = c(-1,0.5,-2), end = c(1,0.5,-2),
radius=0.5),material=glossy(checkercolor="red"))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,
lookat=c(0,0.5,-2),lookfrom=c(3,3,10))
}
if(run_documentation()) {
#Show the effect of changing the radius
generate_ground(material=diffuse(color="dodgerblue4",checkercolor="grey10")) \%>\%
add_object(csg_object(
csg_combine(
csg_capsule(start = c(-1,0.5,-2), end = c(1,0.5,-2), radius=0.5),
csg_capsule(start = c(-0.5,1.5,-2), end = c(0.5,1.5,-2), radius=0.25)),
material=glossy(checkercolor="red"))) \%>\%
render_scene(clamp_value=10, samples=16,fov=20,
lookat=c(0,0.5,-2),lookfrom=c(-3,3,10))
}
if(run_documentation()) {
#Render a capsule in a Cornell box
generate_cornell() \%>\%
add_object(csg_object(
csg_capsule(start = c(555/2-100,555/2,555/2), end = c(555/2+100,555/2,555/2), radius=100),
material=glossy(color="dodgerblue4"))) \%>\%
render_scene(clamp_value=10, samples=16)
}
}