Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
96355d45
Commit
96355d45
authored
12 years ago
by
Brendon Murphy
Browse files
Options
Downloads
Patches
Plain Diff
Added newell teapot & easter egg (Spoon)
parent
1ac408a6
No related branches found
No related tags found
No related merge requests found
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
add_mesh_extra_objects/__init__.py
+4
-1
4 additions, 1 deletion
add_mesh_extra_objects/__init__.py
add_mesh_extra_objects/add_mesh_teapot.py
+832
-0
832 additions, 0 deletions
add_mesh_extra_objects/add_mesh_teapot.py
with
836 additions
and
1 deletion
add_mesh_extra_objects/__init__.py
+
4
−
1
View file @
96355d45
...
...
@@ -17,7 +17,6 @@
# ##### END GPL LICENSE BLOCK #####
# Contributed to by
# Pontiac, Fourmadmen, varkenvarken, tuga3d, meta-androcto, metalliandy, dreampainter & cotejrp1#
# Kayo Phoenix, Anthony D'Agostino#
bl_info
=
{
"
name
"
:
"
Extra Objects
"
,
...
...
@@ -46,6 +45,7 @@ if "bpy" in locals():
imp
.
reload
(
add_mesh_pyramid
)
imp
.
reload
(
add_mesh_torusknot
)
imp
.
reload
(
add_mesh_honeycomb
)
imp
.
reload
(
add_mesh_teapot
)
else
:
from
.
import
add_mesh_extra_objects
from
.
import
add_mesh_twisted_torus
...
...
@@ -57,6 +57,7 @@ else:
from
.
import
add_mesh_pyramid
from
.
import
add_mesh_torusknot
from
.
import
add_mesh_honeycomb
from
.
import
add_mesh_teapot
import
bpy
...
...
@@ -160,6 +161,8 @@ class INFO_MT_mesh_misc_add(bpy.types.Menu):
text
=
"
Step Pyramid
"
)
layout
.
operator
(
"
mesh.honeycomb_add
"
,
text
=
"
Honeycomb
"
)
layout
.
operator
(
"
mesh.primitive_teapot_add
"
,
text
=
"
Teapot+
"
)
# Register all operators and panels
# Define "Extras" menu
...
...
This diff is collapsed.
Click to expand it.
add_mesh_extra_objects/add_mesh_teapot.py
0 → 100644
+
832
−
0
View file @
96355d45
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment