https://github.com/alcarney/addtriangle
A simple blender addon which adds a triangle to the scene
https://github.com/alcarney/addtriangle
Last synced: 3 months ago
JSON representation
A simple blender addon which adds a triangle to the scene
- Host: GitHub
- URL: https://github.com/alcarney/addtriangle
- Owner: alcarney
- Created: 2016-03-29T18:24:49.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-11-24T21:30:07.000Z (over 8 years ago)
- Last Synced: 2025-01-29T22:03:50.022Z (4 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AddTriangle
This is a simple example of using the Blender Python API to create an
addon. This addon is made up of two parts.- A class, which defines an operator which creates a triangle mesh and
adds it to the current scene.
- A function which adds an item to the add mesh menu, allowing you to
actually use the operator defined above