turn3d {rgl} | R Documentation |
Create a solid of rotation from a two-dimensional curve
Description
This function “turns” the curve (as on a lathe) to form a solid of rotation along the x axis.
Usage
turn3d(x, y = NULL, n = 12, smooth = FALSE, ...)
Arguments
x , y |
Points on the curve, in a form suitable for |
n |
How many steps in the rotation? |
smooth |
logical; whether to add normals for a smooth appearance. |
... |
Additional parameters to pass to |
Value
A mesh object containing triangles and/or quadrilaterals.
Author(s)
Fang He and Duncan Murdoch
See Also
Examples
x <- 1:10
y <- rnorm(10)^2
open3d()
shade3d(turn3d(x, y), col = "green")
[Package rgl version 1.3.1 Index]