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
use crate::objects::HalfEdge;
use super::{
curve::{CurveApprox, RangeOnCurve},
Approx, ApproxPoint,
};
impl Approx for &HalfEdge {
type Approximation = HalfEdgeApprox;
fn approx(self, tolerance: super::Tolerance) -> Self::Approximation {
let &[a, b] = self.vertices();
let range = RangeOnCurve::new([a, b]);
let first = ApproxPoint::new(
a.surface_form().position(),
a.global_form().position(),
);
let curve_approx = (self.curve(), range).approx(tolerance);
HalfEdgeApprox {
first,
curve_approx,
}
}
}
#[derive(Debug, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct HalfEdgeApprox {
pub first: ApproxPoint<2>,
pub curve_approx: CurveApprox,
}
impl HalfEdgeApprox {
pub fn points(&self) -> Vec<ApproxPoint<2>> {
let mut points = Vec::new();
points.push(self.first.clone());
points.extend(self.curve_approx.points.clone());
points
}
}