mirror of
https://github.com/gumyr/build123d.git
synced 2025-12-15 15:20:37 -08:00
talk about dimension not lists
This commit is contained in:
parent
495a349ae5
commit
82af5847eb
1 changed files with 4 additions and 4 deletions
|
|
@ -6093,12 +6093,12 @@ class Face(Shape):
|
|||
"""make_surface_from_array_of_points
|
||||
|
||||
Approximate a spline surface through the provided 2d array of points.
|
||||
The first list correspond to points on the vertical direction in the parameter space of the face.
|
||||
The second list correspond to points on the horizontal direction in the parameter space of the face.
|
||||
The 2 lists are UV points of the parameter space of the face.
|
||||
The first dimension correspond to points on the vertical direction in the parameter space of the face.
|
||||
The second dimension correspond to points on the horizontal direction in the parameter space of the face.
|
||||
The 2 dimensions are U,V dimensions of the parameter space of the face.
|
||||
|
||||
Args:
|
||||
points (list[list[VectorLike]]): a 2D list of points, first list is V parameters second is U parameters.
|
||||
points (list[list[VectorLike]]): a 2D list of points, first dimension is V parameters second is U parameters.
|
||||
tol (float, optional): tolerance of the algorithm. Defaults to 1e-2.
|
||||
smoothing (Tuple[float, float, float], optional): optional tuple of
|
||||
3 weights use for variational smoothing. Defaults to None.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue