Skip to content

Commit

Permalink
Minor change to Face.normal_at
Browse files Browse the repository at this point in the history
  • Loading branch information
gumyr committed Mar 24, 2024
1 parent 78a30a7 commit d9ef5b0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/build123d/topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -5350,13 +5350,13 @@ def normal_at(self, surface_point: VectorLike = None) -> Vector:
"""

@overload
def normal_at(self, u: float = None, v: float = None) -> Vector:
def normal_at(self, u: float, v: float) -> Vector:
"""normal_at u, v values on Face
Args:
u (float, optional): the horizontal coordinate in the parameter space of the Face,
u (float): the horizontal coordinate in the parameter space of the Face,
between 0.0 and 1.0
v (float, optional): the vertical coordinate in the parameter space of the Face,
v (float): the vertical coordinate in the parameter space of the Face,
between 0.0 and 1.0
Defaults to the center (None/None)
Expand Down

0 comments on commit d9ef5b0

Please sign in to comment.