mirror of
https://github.com/hannobraun/Fornjot
synced 2025-02-06 07:15:55 +00:00
Simplify variable name
This commit is contained in:
parent
52816b6c96
commit
6c717920d0
@ -36,8 +36,7 @@ impl Approx for (&Handle<HalfEdge>, &Surface) {
|
||||
.with_source((half_edge.clone(), half_edge.boundary()[0]));
|
||||
|
||||
let points = {
|
||||
let global_curve_approx = match cache
|
||||
.get(half_edge.global_form().clone(), range)
|
||||
let approx = match cache.get(half_edge.global_form().clone(), range)
|
||||
{
|
||||
Some(approx) => approx,
|
||||
None => {
|
||||
@ -51,7 +50,7 @@ impl Approx for (&Handle<HalfEdge>, &Surface) {
|
||||
}
|
||||
};
|
||||
|
||||
global_curve_approx
|
||||
approx
|
||||
.points
|
||||
.into_iter()
|
||||
.map(|point| {
|
||||
|
Loading…
Reference in New Issue
Block a user