Skip to content

Commit

Permalink
fix paths in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
HoBeZwe committed Feb 14, 2024
1 parent d7f1de3 commit 3959fa1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/src/curves.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ savefig(t, "cruve3DInserted.html"); nothing # hide
```

```@raw html
<object data="cruve3DInserted.html" type="text/html" style="width:100%;height:50vh;"> </object>
<object data="../cruve3DInserted.html" type="text/html" style="width:100%;height:50vh;"> </object>
```

Several knots can be inserted by the [`refine`](@ref refine) function.
Expand All @@ -128,7 +128,7 @@ savefig(t, "cruve3Drefined.html"); nothing # hide
```

```@raw html
<object data="cruve3Drefined.html" type="text/html" style="width:100%;height:50vh;"> </object>
<object data="../cruve3Drefined.html" type="text/html" style="width:100%;height:50vh;"> </object>
```

!!! note
Expand All @@ -155,7 +155,7 @@ savefig(t, "cruve3Dsplit.html"); nothing # hide
```

```@raw html
<object data="cruve3Dsplit.html" type="text/html" style="width:100%;height:50vh;"> </object>
<object data="../cruve3Dsplit.html" type="text/html" style="width:100%;height:50vh;"> </object>
```

To equally split a curve into ``n`` curves as a second argument an integer can be provided:
Expand Down
4 changes: 2 additions & 2 deletions docs/src/surfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ savefig(t, "surfaceRefined.html"); nothing # hide
```

```@raw html
<object data="surfaceRefined.html" type="text/html" style="width:100%;height:50vh;"> </object>
<object data="../surfaceRefined.html" type="text/html" style="width:100%;height:50vh;"> </object>
```

!!! note
Expand All @@ -152,7 +152,7 @@ savefig(t, "surfaceSplit.html"); nothing # hide
```

```@raw html
<object data="surfaceSplit.html" type="text/html" style="width:100%;height:50vh;"> </object>
<object data="../surfaceSplit.html" type="text/html" style="width:100%;height:50vh;"> </object>
```

To equally split a surface into ``n`` times ``m`` surfaces as second and third argument an integer can be provided:
Expand Down

2 comments on commit 3959fa1

@HoBeZwe
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

New Features:

  • knot refinement for curves & surfaces
  • curve splitting
  • surface splitting

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/100871

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.3 -m "<description of version>" 3959fa13cedee44954b3bb5c4877e8a93582cf57
git push origin v0.5.3

Please sign in to comment.