-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathcsg_scale.Rd
32 lines (31 loc) · 929 Bytes
/
csg_scale.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/csg_construct.R
\name{csg_scale}
\alias{csg_scale}
\title{CSG Scale}
\usage{
csg_scale(object, scale = 1)
}
\arguments{
\item{object}{CSG object.}
\item{scale}{Default `1`.}
}
\value{
List describing the triangle in the scene.
}
\description{
CSG Scale
}
\examples{
if(run_documentation()) {
#Scale a pyramid (translating it upwards because the object is scaled from the center):
generate_ground(material=diffuse(checkercolor="grey20")) \%>\%
add_object(csg_object(csg_pyramid(z=1,y=-0.99),
material=glossy(color="red"))) \%>\%
add_object(csg_object(csg_scale(csg_pyramid(z=-1,y=-0.5),2),
material=glossy(color="green"))) \%>\%
add_object(sphere(y=5,x=5,z=5,material=light(intensity=40))) \%>\%
render_scene(lookfrom=c(-3,4,10), fov=20,
lookat=c(0,-0.5,-0.5),clamp_value=10)
}
}