mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-06 02:30:55 -08:00
Minor change to Face.normal_at
This commit is contained in:
parent
78a30a7676
commit
d9ef5b0689
1 changed files with 3 additions and 3 deletions
|
|
@ -5350,13 +5350,13 @@ class Face(Shape):
|
|||
"""
|
||||
|
||||
@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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue