Minor change to Face.normal_at

This commit is contained in:
gumyr 2024-03-24 09:38:05 -04:00
parent 78a30a7676
commit d9ef5b0689

View file

@ -5350,13 +5350,13 @@ class Face(Shape):
""" """
@overload @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 """normal_at u, v values on Face
Args: 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 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 between 0.0 and 1.0
Defaults to the center (None/None) Defaults to the center (None/None)