-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcsg_cone.Rd
56 lines (54 loc) · 1.93 KB
/
csg_cone.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_cone}
\alias{csg_cone}
\title{CSG Cone}
\usage{
csg_cone(start = c(0, 0, 0), end = c(0, 1, 0), radius = 0.5)
}
\arguments{
\item{start}{Default `c(0, 0, 0)`. Start point of the cone, specifing `x`, `y`, `z`.}
\item{end}{Default `c(0, 1, 0)`. End point of the cone, specifing `x`, `y`, `z`.}
\item{radius}{Default `1`. Radius of the bottom of the cone.}
}
\value{
List describing the box in the scene.
}
\description{
CSG Cone
}
\examples{
if(run_documentation()) {
#Generate a basic cone:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_cone(),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_cone(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_cone(start = c(-1,0.5,-2), end = c(1,0.5,-2), radius=0.5),
csg_cone(start = c(-0.5,1.5,-2), end = c(0.5,1.5,-2), radius=0.2)),
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 glass cone in a Cornell box
generate_cornell() \%>\%
add_object(csg_object(
csg_cone(start = c(555/2,0,555/2), end = c(555/2,555/2+100,555/2), radius=100),
material=dielectric(attenuation=c(1,1,0.3)/100))) \%>\%
render_scene(clamp_value=10, samples=16)
}
}