How to Add Custom Mesh Primitive

Is there a way to add custom primitives to the ctrl+a add mesh menu?

I’ve searched and found links to an addon called creaprim, but all the links seem to be broken.

I’m looking for a way to quickly add an object that is a single vert (in object mode). I know this is possible in edit mode but can’t find how to do it in Object mode.

In the text editor python templates there’s one called “Addon add object”.
You can use that, replacing the verts list with the coordinates for the vert you want, and emptying the faces list, like this:

verts = [
    Vector((0, 0, 0)),
]

edges = []
faces = []
2 Likes

In Preferences > Add-ons, find and activate Add Mesh: Extra Objects.
In the Add Menu you will now have Single Vert > Add Single Vert.
Right Click on that final Add Single Vert and add it to your Quick Favorites for easier access.

Note: Open the add on in a text editor to discover how to “add custom primitives to the Add Menu”.

You mean… this one:

Provided link (EWOpr… ) seems to work… (don’t know about the addon)…

1 Like