mirror of
https://github.com/hannobraun/Fornjot
synced 2025-05-07 19:38:29 +00:00
Simplify variable name
This commit is contained in:
parent
efd7739162
commit
984ee93df9
@ -89,11 +89,11 @@ impl SurfaceGeom {
|
|||||||
// We don't need to approximate a line. So instead of creating a
|
// We don't need to approximate a line. So instead of creating a
|
||||||
// line segment to represent the line at this point, we just
|
// line segment to represent the line at this point, we just
|
||||||
// need this single point.
|
// need this single point.
|
||||||
let point_global = line.origin()
|
let point = line.origin()
|
||||||
+ line.direction() * point_surface.u
|
+ line.direction() * point_surface.u
|
||||||
+ self.v * point_surface.v;
|
+ self.v * point_surface.v;
|
||||||
|
|
||||||
Triangle::from([point_global; 3])
|
Triangle::from([point; 3])
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user