Библиотека для создания и отображения 3D объектов с помощью Tkinter
Project description
Py3DGraphics
Библиотека для создания и отображения 3D объектов с помощью Tkinter.
Установка
pip install py3dgraphics
Использование
from py3dgraphics import Point3D, Object3D, Scene3D
# Создание куба
CUBE_SIZE = 150
points = [
[-CUBE_SIZE, -CUBE_SIZE, -CUBE_SIZE],
[ CUBE_SIZE, -CUBE_SIZE, -CUBE_SIZE],
[ CUBE_SIZE, CUBE_SIZE, -CUBE_SIZE],
[-CUBE_SIZE, CUBE_SIZE, -CUBE_SIZE],
[-CUBE_SIZE, -CUBE_SIZE, CUBE_SIZE],
[ CUBE_SIZE, -CUBE_SIZE, CUBE_SIZE],
[ CUBE_SIZE, CUBE_SIZE, CUBE_SIZE],
[-CUBE_SIZE, CUBE_SIZE, CUBE_SIZE]
]
edges = [
(0, 1), (1, 2), (2, 3), (3, 0),
(4, 5), (5, 6), (6, 7), (7, 4),
(0, 4), (1, 5), (2, 6), (3, 7)
]
cube = Object3D(points, edges, speed=0.02)
scene = Scene3D()
scene.add_object(cube)
scene.run()
Классы
Point3D: Представляет 3D точку.Object3D: Представляет 3D объект с точками и рёбрами.Scene3D: Управляет сценой и отображением объектов.
Лицензия
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
treeed-0.1.2.tar.gz
(3.0 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file treeed-0.1.2.tar.gz.
File metadata
- Download URL: treeed-0.1.2.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0cef17791689adae821ee8ba01b2dcc19b436c43249525043b2b806e6958222f
|
|
| MD5 |
d5838ff9a726186d75f7345903eea087
|
|
| BLAKE2b-256 |
5ca472d8c067c09f656ae9e1301a0652314a9b2837aaeb6b5de149387e87687b
|
File details
Details for the file treeed-0.1.2-py3-none-any.whl.
File metadata
- Download URL: treeed-0.1.2-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fc18a82302755a0de2561a1d3f7995356229fc1ef96c4615b83a3d54ca4ddefe
|
|
| MD5 |
1b3039cfe8a543966511b149bf45329c
|
|
| BLAKE2b-256 |
13c68b0e59bb6b4167d22815d8bfdc388a00dbbf5044173a7189c0b587d3b2dc
|