1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
use std::fmt;
use crate::builder::HalfEdgeBuilder;
use super::{Curve, GlobalCurve, GlobalVertex, Surface, Vertex};
/// A half-edge
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct HalfEdge {
curve: Curve,
vertices: [Vertex; 2],
global_form: GlobalEdge,
}
impl HalfEdge {
/// Build a half-edge using [`HalfEdgeBuilder`]
pub fn build(surface: Surface) -> HalfEdgeBuilder {
HalfEdgeBuilder::new(surface)
}
/// Create a new instance of `HalfEdge`
///
/// If you only have a curve and the edge vertices, please check out
/// [`HalfEdge::from_curve_and_vertices`], which is a convenience wrapper
/// around this method, which creates an instance of [`GlobalEdge`].
///
/// # Panics
///
/// Panics, if the provided `vertices` are not defined on the same curve as
/// `curve`.
///
/// Panics, if the provided [`GlobalEdge`] instance doesn't refer to the
/// same [`GlobalCurve`] and [`GlobalVertex`] instances that the other
/// objects that are passed refer to.
///
/// Panics, if the provided vertices are coincident on the curve. If they
/// were, the edge would have no length, and thus not be valid. (It is
/// perfectly fine for global forms of the the vertices to be coincident.
/// That would just mean, that ends of the edge connect to each other.)
pub fn new(
curve: Curve,
vertices: [Vertex; 2],
global_form: GlobalEdge,
) -> Self {
// Make sure `curve` and `vertices` match.
for vertex in &vertices {
assert_eq!(
&curve,
vertex.curve(),
"An edge and its vertices must be defined on the same curve"
);
}
// Make sure `curve` and `vertices` match `global_form`.
assert_eq!(curve.global_form(), global_form.curve());
assert_eq!(
&vertices.clone().map(|vertex| *vertex.global_form()),
global_form.vertices()
);
// Make sure that the edge vertices are not coincident on the curve.
let [a, b] = &vertices;
assert_ne!(
a.position(),
b.position(),
"Vertices of an edge must not be coincident on curve"
);
Self {
curve,
vertices,
global_form,
}
}
/// Create a new instance of `HalfEdge` from a curve and vertices
///
/// The [`GlobalEdge`] instance is created from the provided curve and
/// vertices. Please refer to [`HalfEdge::new`], if you already have a
/// [`GlobalEdge`] instance that you can provide.
pub fn from_curve_and_vertices(
curve: Curve,
vertices: [Vertex; 2],
) -> Self {
let global = GlobalEdge::new(
*curve.global_form(),
vertices.clone().map(|vertex| *vertex.global_form()),
);
Self::new(curve, vertices, global)
}
/// Access the curve that defines the half-edge's geometry
///
/// The edge can be a segment of the curve that is bounded by two vertices,
/// or if the curve is continuous (i.e. connects to itself), the edge could
/// be defined by the whole curve, and have no bounding vertices.
pub fn curve(&self) -> &Curve {
&self.curve
}
/// Access the vertices that bound the half-edge on the curve
///
/// An edge has either two bounding vertices or none. The latter is possible
/// if the edge's curve is continuous (i.e. connects to itself), and defines
/// the whole edge.
pub fn vertices(&self) -> &[Vertex; 2] {
&self.vertices
}
/// Access the global form of this half-edge
pub fn global_form(&self) -> &GlobalEdge {
&self.global_form
}
}
impl fmt::Display for HalfEdge {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let [a, b] = self.vertices().clone().map(|vertex| vertex.position());
write!(f, "edge from {:?} to {:?}", a, b)?;
write!(f, " on {:?}", self.curve().global_form())?;
Ok(())
}
}
/// An edge, defined in global (3D) coordinates
#[derive(Clone, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct GlobalEdge {
curve: GlobalCurve,
vertices: [GlobalVertex; 2],
}
impl GlobalEdge {
/// Create a new instance
pub fn new(curve: GlobalCurve, vertices: [GlobalVertex; 2]) -> Self {
Self { curve, vertices }
}
/// Access the curve that defines the edge's geometry
///
/// The edge can be a segment of the curve that is bounded by two vertices,
/// or if the curve is continuous (i.e. connects to itself), the edge could
/// be defined by the whole curve, and have no bounding vertices.
pub fn curve(&self) -> &GlobalCurve {
&self.curve
}
/// Access the vertices that bound the edge on the curve
///
/// An edge has either two bounding vertices or none. The latter is possible
/// if the edge's curve is continuous (i.e. connects to itself), and defines
/// the whole edge.
pub fn vertices(&self) -> &[GlobalVertex; 2] {
&self.vertices
}
}