mirror of
https://github.com/hannobraun/Fornjot
synced 2025-07-28 04:46:12 +00:00
Update name of function parameter
This commit is contained in:
parent
fa1bd45280
commit
37810814a7
@ -81,13 +81,16 @@ pub struct OperationResult<'r, T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'r, T> OperationResult<'r, T> {
|
impl<'r, T> OperationResult<'r, T> {
|
||||||
pub fn vertex(self, point: impl Into<Vertex>) -> OperationResult<'r, T::Out>
|
pub fn vertex(
|
||||||
|
self,
|
||||||
|
vertex: impl Into<Vertex>,
|
||||||
|
) -> OperationResult<'r, T::Out>
|
||||||
where
|
where
|
||||||
T: CombinRight<Vertex>,
|
T: CombinRight<Vertex>,
|
||||||
{
|
{
|
||||||
let OperationResult {
|
let OperationResult {
|
||||||
results: (vertex,), ..
|
results: (vertex,), ..
|
||||||
} = self.operations.vertex(point);
|
} = self.operations.vertex(vertex);
|
||||||
|
|
||||||
OperationResult {
|
OperationResult {
|
||||||
operations: self.operations,
|
operations: self.operations,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user