Skip to content

Commit

Permalink
0.8.1
Browse files Browse the repository at this point in the history
FIXED SCW WRITING!
  • Loading branch information
danila-schelkov committed Jan 15, 2021
1 parent fdb7ada commit 2c7901a
Show file tree
Hide file tree
Showing 32 changed files with 2,994 additions and 68 deletions.
25 changes: 25 additions & 0 deletions 3d-converter-0.8.0/3d_converter.egg-info/PKG-INFO
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
29 changes: 29 additions & 0 deletions 3d-converter-0.8.0/3d_converter.egg-info/SOURCES.txt
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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions 3d-converter-0.8.0/3d_converter.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
models_converter
10 changes: 10 additions & 0 deletions 3d-converter-0.8.0/README.md
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
5 changes: 5 additions & 0 deletions 3d-converter-0.8.0/models_converter/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__all__ = [
'formats',
'chunks',
'utils'
]
6 changes: 6 additions & 0 deletions 3d-converter-0.8.0/models_converter/formats/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
__all__ = [
'scw',
'dae',
'obj',
'gltf'
]
Loading

0 comments on commit 2c7901a

Please sign in to comment.