Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added better explanations of what are the points lists #755

Merged
merged 2 commits into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/build123d/topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -6093,9 +6093,12 @@ def make_surface_from_array_of_points(
"""make_surface_from_array_of_points

Approximate a spline surface through the provided 2d array of points.
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
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.
Expand Down