pub struct Sketch { /* private fields */ }Expand description
A 2-dimensional shape
Implementations§
Trait Implementations§
source§impl Approx for &Sketch
impl Approx for &Sketch
§type Approximation = BTreeSet<FaceApprox>
type Approximation = BTreeSet<FaceApprox>
The approximation of the object
§type Cache = HalfEdgeApproxCache
type Cache = HalfEdgeApproxCache
The cache used to cache approximation results
source§fn approx_with_cache(
self,
_tolerance: impl Into<Tolerance>,
_cache: &mut Self::Cache
) -> Self::Approximation
fn approx_with_cache( self, _tolerance: impl Into<Tolerance>, _cache: &mut Self::Cache ) -> Self::Approximation
Approximate the object, using the provided cache Read more
source§impl Ord for Sketch
impl Ord for Sketch
source§impl PartialEq for Sketch
impl PartialEq for Sketch
source§impl PartialOrd for Sketch
impl PartialOrd for Sketch
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl ReplaceCurve for Sketch
impl ReplaceCurve for Sketch
§type BareObject = Sketch
type BareObject = Sketch
The bare object type that this trait is implemented for
source§fn replace_curve(
&self,
original: &Handle<Curve>,
replacement: Handle<Curve>,
services: &mut Services
) -> ReplaceOutput<Self, Self::BareObject>
fn replace_curve( &self, original: &Handle<Curve>, replacement: Handle<Curve>, services: &mut Services ) -> ReplaceOutput<Self, Self::BareObject>
Replace the curve
source§impl ReplaceHalfEdge for Sketch
impl ReplaceHalfEdge for Sketch
§type BareObject = Sketch
type BareObject = Sketch
The bare object type that this trait is implemented for
source§fn replace_half_edge<const N: usize>(
&self,
original: &Handle<HalfEdge>,
replacements: [Handle<HalfEdge>; N],
services: &mut Services
) -> ReplaceOutput<Self, Self::BareObject>
fn replace_half_edge<const N: usize>( &self, original: &Handle<HalfEdge>, replacements: [Handle<HalfEdge>; N], services: &mut Services ) -> ReplaceOutput<Self, Self::BareObject>
Replace the half-edge
source§impl ReplaceVertex for Sketch
impl ReplaceVertex for Sketch
§type BareObject = Sketch
type BareObject = Sketch
The bare object type that this trait is implemented for
source§fn replace_vertex(
&self,
original: &Handle<Vertex>,
replacement: Handle<Vertex>,
services: &mut Services
) -> ReplaceOutput<Self, Self::BareObject>
fn replace_vertex( &self, original: &Handle<Vertex>, replacement: Handle<Vertex>, services: &mut Services ) -> ReplaceOutput<Self, Self::BareObject>
Replace the vertex
source§impl SweepSketch for Sketch
impl SweepSketch for Sketch
source§impl UpdateSketch for Sketch
impl UpdateSketch for Sketch
source§impl Validate for Sketch
impl Validate for Sketch
source§fn validate_with_config(
&self,
_: &ValidationConfig,
_: &mut Vec<ValidationError>
)
fn validate_with_config( &self, _: &ValidationConfig, _: &mut Vec<ValidationError> )
Validate the object
source§fn validate_and_return_first_error(&self) -> Result<(), ValidationError>
fn validate_and_return_first_error(&self) -> Result<(), ValidationError>
Validate the object using default config and return on first error
source§fn validate(&self, errors: &mut Vec<ValidationError>)
fn validate(&self, errors: &mut Vec<ValidationError>)
Validate the object using default configuration
impl Eq for Sketch
impl StructuralEq for Sketch
impl StructuralPartialEq for Sketch
Auto Trait Implementations§
impl !RefUnwindSafe for Sketch
impl Send for Sketch
impl Sync for Sketch
impl Unpin for Sketch
impl !UnwindSafe for Sketch
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read more§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.