Computes the position vector at the desired location in the u,v parameter space. :returns: a vector representing the position :param u: the u parametric location to compute the normal at. :param v: the v parametric location to compute the normal at.
(self, u: Real, v: Real)
| 3344 | return us, vs |
| 3345 | |
| 3346 | def positionAt(self, u: Real, v: Real) -> Vector: |
| 3347 | """ |
| 3348 | Computes the position vector at the desired location in the u,v parameter space. |
| 3349 | |
| 3350 | :returns: a vector representing the position |
| 3351 | :param u: the u parametric location to compute the normal at. |
| 3352 | :param v: the v parametric location to compute the normal at. |
| 3353 | """ |
| 3354 | p = gp_Pnt() |
| 3355 | vn = gp_Vec() |
| 3356 | BRepGProp_Face(self.wrapped).Normal(u, v, p, vn) |
| 3357 | |
| 3358 | return Vector(p) |
| 3359 | |
| 3360 | def locationAt(self, u: Real, v: Real) -> Location: |
| 3361 | """ |