-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcsg_round.Rd
49 lines (48 loc) · 1.73 KB
/
csg_round.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/csg_construct.R
\name{csg_round}
\alias{csg_round}
\title{CSG Round}
\usage{
csg_round(object, radius = 0.1)
}
\arguments{
\item{object}{CSG object.}
\item{radius}{Default `0.1`. Rounding distance.}
}
\value{
List describing the triangle in the scene.
}
\description{
CSG Round
}
\examples{
if(run_documentation()) {
#Generate a rounded pyramid:
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_pyramid(x=-1,y=-0.99,z=1),
material=glossy(color="red"))) \%>\%
add_object(csg_object(csg_round(csg_pyramid(x=1,y=-0.89)),
material=glossy(color="blue"))) \%>\%
add_object(csg_object(csg_round(csg_pyramid(x=0,z=-2,y=-0.5), radius=0.5),
material=glossy(color="green"))) \%>\%
add_object(sphere(y=5,x=5,z=5,radius=1,material=light(intensity=50))) \%>\%
render_scene(lookfrom=c(-3,4,10), fov=22,
lookat=c(0,-0.5,0),clamp_value=10)
}
if(run_documentation()) {
#Round a blend of two objects
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_round(csg_combine(
csg_pyramid(x=-0.5,y=-0.99,z=1.5),
csg_pyramid(x=0.5,y=-0.99,z=2), operation="blend"), radius=0),
material=glossy(color="red"))) \%>\%
add_object(csg_object(csg_round(csg_combine(
csg_pyramid(x=-0.5,y=-0.79,z=-1.5),
csg_pyramid(x=0.5,y=-0.79,z=-1), operation="blend"), radius=0.2),
material=glossy(color="green"))) \%>\%
add_object(sphere(y=5,x=5,z=5,radius=1,material=light(intensity=50))) \%>\%
render_scene(lookfrom=c(-3,5,10), fov=22,
lookat=c(0,-0.5,0),clamp_value=10)
}
}