Function parry3d_f64::transformation::utils::push_arc
source · pub fn push_arc(
center: Point<Real>,
start: Point<Real>,
end: Point<Real>,
nsubdivs: u32,
out: &mut Vec<Point<Real>>
)Expand description
Pushes to out a set of points forming an arc starting at start, ending at end with
revolution center at center. The curve is approximated by pushing nsubdivs points.
The start and end point are not pushed to out.