forked from elalish/manifold
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* min distance start algo * loft algorithm improvement * Loft performance enhancements * version bump * Slices algorithm * Version bump * Add slices to java bindings * transform fix * Add CreateSurface function * stb_image.h * Update gh action * Update gh action * gh * Add load surface from file * Point Cloud Meshing (#4) * Surface and .ply loading * New Version * Vertex Colors * new version * syntax fix * LoadImage operator * GetFaceNormals, GetHalfedges * Add IntVector * Fix naming * GetVertices and GetTriangles * migrating * new version is building * start migrating bindings * migration progress * progress * more progress * more progress * more progress * Compiles * more progress * fixes * bad files * fix * Fixes * Fix tests * Export fix * Fix * Fix
- Loading branch information
1 parent
051bd61
commit af3efdc
Showing
255 changed files
with
157,398 additions
and
18,140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
line_length: 80 | ||
indent: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Release File | ||
|
||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
upload_archive: | ||
name: Upload archive | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: | | ||
ref=${{ github.ref_name }} | ||
echo "release_name=manifold-${ref#v}" >> $GITHUB_ENV | ||
- uses: actions/checkout@v4 | ||
with: | ||
path: ${{ env.release_name }} | ||
submodules: recursive | ||
- name: Build archive | ||
run: > | ||
tar --exclude=".git*" -cz ${{ env.release_name }} -f ${{ env.release_name }}.tar.gz | ||
- name: Log checksum | ||
run: > | ||
sha256sum ${{ env.release_name }}.tar.gz | ||
- name: Add file to release | ||
run: | | ||
cd ${{ env.release_name }} || exit 1 | ||
gh release upload ${{ github.ref_name }} ../${{ env.release_name }}.tar.gz | ||
env: | ||
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.