mirror of
https://github.com/gumyr/build123d.git
synced 2026-01-10 19:22:09 -08:00
normalized Face.normal_at()
This commit is contained in:
parent
5ec0acc5b3
commit
dc5fcffb4e
1 changed files with 1 additions and 1 deletions
|
|
@ -4548,7 +4548,7 @@ class Face(Shape):
|
|||
normal = gp_Vec()
|
||||
BRepGProp_Face(self.wrapped).Normal(u_val, v_val, gp_pnt, normal)
|
||||
|
||||
return Vector(normal)
|
||||
return Vector(normal).normalized()
|
||||
|
||||
def position_at(self, u: float, v: float) -> Vector:
|
||||
"""position_at
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue