Blender (software)

From David's Wiki
\( \newcommand{\P}[]{\unicode{xB6}} \newcommand{\AA}[]{\unicode{x212B}} \newcommand{\empty}[]{\emptyset} \newcommand{\O}[]{\emptyset} \newcommand{\Alpha}[]{Α} \newcommand{\Beta}[]{Β} \newcommand{\Epsilon}[]{Ε} \newcommand{\Iota}[]{Ι} \newcommand{\Kappa}[]{Κ} \newcommand{\Rho}[]{Ρ} \newcommand{\Tau}[]{Τ} \newcommand{\Zeta}[]{Ζ} \newcommand{\Mu}[]{\unicode{x039C}} \newcommand{\Chi}[]{Χ} \newcommand{\Eta}[]{\unicode{x0397}} \newcommand{\Nu}[]{\unicode{x039D}} \newcommand{\Omicron}[]{\unicode{x039F}} \DeclareMathOperator{\sgn}{sgn} \def\oiint{\mathop{\vcenter{\mathchoice{\huge\unicode{x222F}\,}{\unicode{x222F}}{\unicode{x222F}}{\unicode{x222F}}}\,}\nolimits} \def\oiiint{\mathop{\vcenter{\mathchoice{\huge\unicode{x2230}\,}{\unicode{x2230}}{\unicode{x2230}}{\unicode{x2230}}}\,}\nolimits} \)

Blender is an open-source 3D modelling software.
It can be used for creating 3D models for games, creating 2D/3D animations, and even creating video games.

Getting Started

Installation

Windows

Direct Download
From chocolatey:

choco install blender
Ubuntu

Blender is available on the Snap store

sudo snap install blender --classic

Modelling

Geometry Nodes

Blender Manual Geometry Nodes

Geometry nodes allow you to procedurally modify the geometry of the object.
Some things it can do include instancing of objects, moving vertices, and arithmetic.
Note that Geometry nodes are available in Blender 2.92+ with some nodes introduced in 2.93 LTS.

See some references:

Animations

Rendering and Compositing

Press <key>F12</key> to render.

Denoising

  1. In the view layer properties, check Denoising Data
  2. Switch to the compositor layout.
  3. Add a denoise node, under filter.
  4. Attach the denoising normal, denoising albedo, and denoising depth.

Scripting

Blender Python API

Getting Started

Blender supports scripting as an alternative means of interaction. Most things are available in the bpy module.

See one of the following resources to get started:

Meshes

vertices = [(-1, -1, 0), (1, -1, 0),
            (-1, 1, 0), (1, 1, 0)]
edges = [(0,1), (1,2), (2,3), (3,0)]
faces = [(0,1,2), (1,2,3)]
uvs = [(0, 0), (1, 0),
       (0, 1), (1, 1)]

# Create a new mesh
new_mesh = bpy.data.meshes.new(mesh_name)
new_mesh.from_pydata(vertices, edges, faces)
new_mesh.update()

# Add UVs
uv_layer = new_mesh.uv_layers.new()
for face in new_mesh.polygons:
  for vert_idx, loop_idx in zip(face.vertices, face.loop_indices):
    uv_layer.data[loop_idx].uv = uvs[vert_idx]

Materials

# Create a new material
my_material = bpy.data.materials.new("My New Material")
my_material.use_nodes = True

# Add material to an object
my_object.data.materials.append(my_material)

Saving scripts outside

See using external ide and run external scripts.

By default, everything is stored in the .blend file including your custom scripts. If you want to store your scripts outside or use another IDE, you will need to have the script inside Blender call the script outside:

import bpy
filepath = bpy.path.abspath("//myscript.py")
exec(compile(open(filepath).read(), filename, 'exec'))

Compiling Blender

See https://wiki.blender.org/wiki/Building_Blender/Linux/Ubuntu,

Note that Blender has a github mirror which may be faster to clone.

Resources