Document convenient syntax of fj::Sweep

This commit is contained in:
Hanno Braun 2022-10-11 14:50:55 +02:00
parent 8a231eee91
commit 7f1bba7e98

View File

@ -1,6 +1,18 @@
use crate::{Shape, Shape2d};
/// A sweep of a 2-dimensional shape along straight path
///
/// # Examples
///
/// Convenient syntax for this operation is available through [`crate::syntax`].
///
/// ``` rust
/// # let shape = fj::Sketch::from_points(vec![[0., 0.], [1., 0.], [0., 1.]]);
/// use fj::syntax::*;
///
/// // `shape` can be anything that converts to `fj::Shape2d`
/// let group = shape.sweep([0., 0., 1.]);
/// ```
#[derive(Clone, Debug, PartialEq)]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
#[repr(C)]