From d9ef5b068986d60878cae917d30b9bbf543b38dc Mon Sep 17 00:00:00 2001 From: gumyr Date: Sun, 24 Mar 2024 09:38:05 -0400 Subject: [PATCH] Minor change to Face.normal_at --- src/build123d/topology.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/build123d/topology.py b/src/build123d/topology.py index 6f3e1cd..18256b0 100644 --- a/src/build123d/topology.py +++ b/src/build123d/topology.py @@ -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)