-
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.
Showing
32 changed files
with
2,994 additions
and
68 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,25 @@ | ||
Metadata-Version: 2.1 | ||
Name: 3d-converter | ||
Version: 0.8.0 | ||
Summary: Python 3D Models Converter | ||
Home-page: https://github.com/vorono4ka/3d-converter | ||
Author: Vorono4ka | ||
Author-email: [email protected] | ||
License: GPLv3 | ||
Description: ## `Python 3D Models Converter` | ||
|
||
**Version**: 0.8.0 | ||
|
||
### Thanks a lot for motivating [AMIRMISTIK]! | ||
|
||
### **THIS IS NOT RELEASE VERSION!** | ||
|
||
|
||
[AMIRMISTIK]: https://www.youtube.com/channel/UCksd1LeoySP5St6dKlv6mvQ | ||
|
||
Platform: UNKNOWN | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) | ||
Classifier: Operating System :: OS Independent | ||
Requires-Python: >=3.7 | ||
Description-Content-Type: text/markdown |
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,29 @@ | ||
README.md | ||
setup.py | ||
3d_converter.egg-info/PKG-INFO | ||
3d_converter.egg-info/SOURCES.txt | ||
3d_converter.egg-info/dependency_links.txt | ||
3d_converter.egg-info/top_level.txt | ||
models_converter/__init__.py | ||
models_converter/formats/__init__.py | ||
models_converter/formats/dae.py | ||
models_converter/formats/gltf.py | ||
models_converter/formats/obj.py | ||
models_converter/formats/scw/__init__.py | ||
models_converter/formats/scw/parser.py | ||
models_converter/formats/scw/writer.py | ||
models_converter/formats/scw/chunks/__init__.py | ||
models_converter/formats/scw/chunks/came.py | ||
models_converter/formats/scw/chunks/chunk.py | ||
models_converter/formats/scw/chunks/geom.py | ||
models_converter/formats/scw/chunks/head.py | ||
models_converter/formats/scw/chunks/mate.py | ||
models_converter/formats/scw/chunks/node.py | ||
models_converter/formats/scw/chunks/wend.py | ||
models_converter/utils/__init__.py | ||
models_converter/utils/reader.py | ||
models_converter/utils/writer.py | ||
models_converter/utils/matrix/__init__.py | ||
models_converter/utils/matrix/matrix2x2.py | ||
models_converter/utils/matrix/matrix3x3.py | ||
models_converter/utils/matrix/matrix4x4.py |
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 @@ | ||
|
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 @@ | ||
models_converter |
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,10 @@ | ||
## `Python 3D Models Converter` | ||
|
||
**Version**: 0.8.0 | ||
|
||
### Thanks a lot for motivating [AMIRMISTIK]! | ||
|
||
### **THIS IS NOT RELEASE VERSION!** | ||
|
||
|
||
[AMIRMISTIK]: https://www.youtube.com/channel/UCksd1LeoySP5St6dKlv6mvQ |
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,5 @@ | ||
__all__ = [ | ||
'formats', | ||
'chunks', | ||
'utils' | ||
] |
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,6 @@ | ||
__all__ = [ | ||
'scw', | ||
'dae', | ||
'obj', | ||
'gltf' | ||
] |
Oops, something went wrong.