Convenience function to add a circle to the scene.
Usage
add_circle(
scene,
radius = 1,
position = c(0, 0, 0),
color = "#FFFFFF",
fill_color = NULL,
stroke_width = 2,
fill_opacity = 0.5
)Examples
if (FALSE) { # \dontrun{
scene("circle_demo") %>%
add_circle(radius = 2, color = "red") %>%
draw_border() %>%
render()
} # }