mirror of https://github.com/hannobraun/Fornjot
Update doc comments
This commit is contained in:
parent
f4f9ce2d89
commit
62de46b5e2
|
@ -11,11 +11,6 @@ use super::{Edge, Surface};
|
|||
/// edge. The end of the last edge must connect to the beginning of the first
|
||||
/// one.
|
||||
///
|
||||
/// # Equality
|
||||
///
|
||||
/// Please refer to [`crate::kernel::topology`] for documentation on the
|
||||
/// equality of topological objects.
|
||||
///
|
||||
/// # Validation
|
||||
///
|
||||
/// A cycle that is part of a [`Shape`] must be structurally sound. That means
|
||||
|
|
|
@ -11,11 +11,6 @@ use super::{Curve, Vertex};
|
|||
|
||||
/// An edge of a shape
|
||||
///
|
||||
/// # Equality
|
||||
///
|
||||
/// Please refer to [`crate::kernel::topology`] for documentation on the
|
||||
/// equality of topological objects.
|
||||
///
|
||||
/// # Validation
|
||||
///
|
||||
/// An edge that is part of a [`Shape`] must be structurally sound. That means
|
||||
|
|
|
@ -13,11 +13,6 @@ use crate::{builder::VertexBuilder, shape::Shape};
|
|||
/// Points, on the other hand, might be used to approximate a shape for various
|
||||
/// purposes, without presenting any deeper truth about the shape's structure.
|
||||
///
|
||||
/// # Equality
|
||||
///
|
||||
/// Please refer to [`crate::kernel::topology`] for documentation on the
|
||||
/// equality of topological objects.
|
||||
///
|
||||
/// # Validation
|
||||
///
|
||||
/// Vertices must be unique within a shape, meaning an identical vertex must not
|
||||
|
|
|
@ -5,13 +5,6 @@ use super::Object;
|
|||
/// This type is used by topological objects to reference other objects, while
|
||||
/// also keeping track of a local representation of that object, which is often
|
||||
/// more appropriate for various tasks.
|
||||
///
|
||||
/// # Equality
|
||||
///
|
||||
/// Since `LocalForm` is used by topological objects, its equality is defined in
|
||||
/// terms that are useful to those objects. Two instances of `LocalForm` are
|
||||
/// equal, if both the local and the canonical forms are equal. The equality of
|
||||
/// the handle that refers to the canonical form is disregarded.
|
||||
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
|
||||
pub struct LocalForm<Local, Canonical: Object> {
|
||||
local: Local,
|
||||
|
|
Loading…
Reference in New Issue