Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into pm-publishpackage…
Browse files Browse the repository at this point in the history
…-packagecontents
  • Loading branch information
dnenov committed Nov 20, 2023
2 parents 2be4bd5 + 96fb3f0 commit b658456
Show file tree
Hide file tree
Showing 142 changed files with 10,191 additions and 3,856 deletions.
7 changes: 0 additions & 7 deletions LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -712,13 +712,6 @@ The above copyright notice and this permission notice shall be included in all c

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

SoapFormatter v1.0.11
https://github.com/novotnyllc/SoapFormatter/blob/main/LICENSE

In general, the runtime and its class libraries are licensed under the
terms of the MIT license, and some third party code is licensed under
the 3-clause BSD license. See the file "PATENTS.TXT" for Microsoft's
patent grant on the Mono codebase.

coverlet.collector v.3.1.2
The MIT License (MIT)
Expand Down
2,851 changes: 930 additions & 1,921 deletions doc/distrib/License.rtf

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## In Depth
Creates a NurbsSurface with specified interpolated points and U and V degrees. The resultant surface will pass through all of the points. The number of tangents must match the number of points in the corresponding direction. The resultant surface will be degree 3 in both the U and V direction.
___
## Example File
`NurbsSurface.ByPointsTangents` creates a smooth surface that passes through each of a grid (list of lists) of points. Specify tangent vectors to control the surface direction at the edges. The number of tangents must match the number of points in the corresponding direction (U - number of lists, V - number of points in each list).

In the example below, a NurbsSurface is created from given points and U and V tangents.

___
## Example File

![NurbsSurface.ByPointsTangents](./Autodesk.DesignScript.Geometry.NurbsSurface.ByPointsTangents_img.jpg)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## In Depth
Solid by Joined Surfaces takes a list of surfaces as an input and will return a single solid defined by the surfaces. The surfaces must define a closed surface. In the example below, we start with a circle as a base geometry. The circle is patched to create a surface, and that surface is translated in the z-direction. We then extrude the circle to produce the sides. List.Create is used to make a list consisting of the base, side, and top surfaces, and then we use ByJoinedSurfaces to turn the list into a single closed solid.
`PolySurface.ByJoinedSurfaces` returns a new PolySurface joined from a list of surfaces.

In the example below, two surface patches and an extrusion are joined into a PolySurface resembling a cylinder.

___
## Example File

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## In Depth
Surface ByLoft with cross sections takes a list of curves as an input. It will produce a surface by lofting between the list of curves in order. In the example below we create two curves, a line and a sine curve. We use List.Create to combine these two curves into a list, which we use as an input for Surface ByLoft. The result is a surface that is lofted between a sine curve on one side, and a line on the other.
`PolySurface.ByLoft (crossSections)` returns a new PolySurface by lofting between curves in a list.

In the example below, a PolySurface is returned from lofting between two circles.

___
## Example File

Expand Down
Loading

0 comments on commit b658456

Please sign in to comment.