Move an object to a new position
Usage
move_to(
scene,
position,
duration = 1,
easing = "smooth",
path = "linear",
target_object = NULL
)Examples
if (FALSE) { # \dontrun{
scene("move_demo") %>%
add_circle(radius = 0.5, position = c(-3, 0, 0)) %>%
grow_from_center() %>%
move_to(c(3, 0, 0), duration = 2) %>%
render()
} # }