BLENDER • SCULPTING

Sculpting Brushes — Use Sculpt Mode brushes (grab, smooth, inflate, crease)

Master the four foundational Sculpt Mode brushes that form the backbone of every organic modeling workflow in Blender.

Historical Context & Motivation

For centuries, sculptors shaped clay and stone with physical tools—gouges, rifflers, wire loops, and their own hands—each tool producing a characteristic deformation on the material. When 3D computer graphics emerged in the 1970s and 1980s, artists were confined to manipulating individual vertices, edges, and faces in what felt more like architectural drafting than sculpting. The desire to replicate the intuitive, gestural quality of traditional sculpting inside a digital environment drove decades of research into mesh deformation algorithms and brush-based interaction paradigms. Understanding this lineage helps explain why Blender's Sculpt Mode brushes behave the way they do: each brush is a digital analogue of a physical sculpting gesture, mathematically defined to move vertices in patterns that mimic the displacement of real-world material.

1999
Early Mesh Sculpting Research
Academic papers on freeform deformation and volumetric sculpting demonstrated that brush-based vertex manipulation could approximate real clay modeling, laying the theoretical foundation for tools like grab and smooth operations.
2005
ZBrush Popularizes Digital Sculpting
Pixologic's ZBrush brought millions-of-polygon sculpting to artists, establishing brush paradigms—inflate, flatten, crease—that became industry standards and influenced every competitor, including Blender.
2010
Blender 2.5 Sculpt Mode Overhaul
Blender's Sculpt Mode received a major rewrite with multithreaded brush evaluation, symmetry options, and a robust brush library that included grab, smooth, inflate, and crease as core tools.
2020
Blender 2.83 — Sculpt Vertex Colors & Performance
Performance leaps with multires improvements and the introduction of sculpt vertex painting pushed Blender's sculpting capabilities closer to parity with dedicated sculpting applications.
2023
Blender 3.5+ — Continued Refinement
Ongoing development in Blender's sculpt pipeline—including lazy brush, auto-masking, and cavity detection—continues to refine how core brushes interact with complex meshes.

The central question that Sculpt Mode brushes address is deceptively simple: how can an artist push, pull, and refine a dense polygon mesh with the same immediacy and expressiveness that a traditional sculptor enjoys with physical clay? Blender's answer is a curated set of brushes—each defined by a specific vertex-displacement algorithm—that, when combined, cover the full range of sculpting gestures from broad massing to fine detail.

Core Principles & Definitions

Before exploring individual brushes, it is essential to understand the shared mechanics that govern all sculpting interactions in Blender. Every Sculpt Mode brush operates by selecting a region of vertices within the brush's radius, weighting each vertex by a falloff curve, and then displacing those vertices according to the brush's specific algorithm. The magnitude of displacement is controlled by the brush's strength parameter, and the direction is determined by the brush type—along normals for inflate, tangent to the surface for grab, averaged positions for smooth, or into valleys for crease.

1

Brush Radius

Defines the circular area of influence on the mesh surface. Controlled with F key. A larger radius affects more vertices and produces broader, smoother strokes.
2

Strength / Pressure

A scalar from 0 to 1 that multiplies the displacement vector. With a pen tablet, pressure sensitivity maps directly to strength, enabling nuanced pressure-to-depth control.
3

Falloff Curve

A function that attenuates displacement from the brush center (weight = 1) to its edge (weight = 0). Common profiles include smooth, sharp, and constant curves.
4

Surface Normal

The perpendicular direction at each vertex. Brushes like inflate displace along normals, while grab displaces in screen space. Understanding normals is key to predicting brush behavior.
5

Symmetry Axis

Sculpt Mode can mirror strokes across X, Y, or Z axes. Enabling symmetry doubles productivity for organic forms like faces or bodies that exhibit bilateral symmetry.
KEY TAKEAWAY
Think of every sculpt brush as a hand pressing into clay through a shaped template. The radius is the size of your palm, the falloff is the template's shape (flat pad vs. pointed finger), and the strength is how hard you press. The brush type simply determines the direction your hand pushes—outward, inward, sideways, or averaging.

Visual Explanation — Brush Displacement Patterns

Top row: each card shows how one brush displaces a flat surface cross-section. Grab translates vertices in screen space; Smooth averages positions to flatten irregularities; Inflate pushes along normals; Crease pinches and sinks. Bottom graph: three common falloff curves determine how displacement attenuates from brush center to edge.

The diagram above distills each brush to its essential displacement behavior. Notice that Grab is the only brush that moves vertices laterally—parallel to the viewing plane—making it ideal for repositioning large masses without adding or removing volume. In contrast, Inflate and Crease both displace along normals, but in opposite senses: Inflate swells the surface outward, while Crease pulls it inward and simultaneously pinches neighboring vertices toward the stroke center. Smooth is unique in that it doesn't impose a direction at all; instead, it relaxes vertex positions toward the local average, acting as a corrective tool that counterbalances the aggressive deformations of the other three brushes.

How Each Brush Works — Under the Hood

While Blender's sculpting tools are designed for artistic intuition rather than manual computation, understanding the underlying displacement logic helps you predict brush behavior and troubleshoot unexpected results. Each brush applies a displacement vector to every vertex within the brush radius, scaled by the falloff weight and the global strength parameter. The mathematical representations below formalize these operations using standard vector notation.

GRAB BRUSH DISPLACEMENT
P′ᵢ = Pᵢ + w(dᵢ) × S × D_screen
Where P′ᵢ is the new position, Pᵢ is the original position, w(dᵢ) is the falloff weight as a function of distance from center, S is strength, and D_screen is the mouse drag vector projected into world space.
SMOOTH BRUSH (LAPLACIAN RELAXATION)
P′ᵢ = Pᵢ + w(dᵢ) × S × (P̄_neighbors − Pᵢ)
P̄_neighbors is the average position of connected neighboring vertices. The brush moves each vertex a fraction of the way toward that average, progressively flattening bumps and wrinkles.
INFLATE BRUSH DISPLACEMENT
P′ᵢ = Pᵢ + w(dᵢ) × S × Nᵢ
Nᵢ is the unit surface normal at vertex i. By displacing purely along the normal, the inflate brush uniformly expands (or contracts, if inverted) the surface without lateral shifting.
CREASE BRUSH — COMBINED OPERATION
P′ᵢ = Pᵢ + w(dᵢ) × S × (−Nᵢ + λ × T_pinch)
Crease combines inward normal displacement (−Nᵢ) with a lateral pinch vector (T_pinch) that pulls vertices toward the stroke center. The parameter λ controls the ratio of pinching to sinking, producing the characteristic sharp groove.
📐 Falloff Weight Function
The falloff weight w(dᵢ) is typically a smooth Hermite interpolation: w = 1 − 3t² + 2t³, where t = dᵢ / R (distance from brush center divided by radius). This produces the gentle S-curve shown in the diagram above, ensuring strokes taper naturally at the edges.

Detailed Breakdown of Each Brush

The flowchart at top illustrates a typical sculpting sequence for a character head, progressing from broad gesture to fine detail. The reference table below summarizes key properties, hotkeys, and behaviors for each brush.

Grab Brush — The Massing Tool

The Grab brush (hotkey G) functions like a hand pressing into soft clay and dragging a portion of the surface to a new position. Unlike most other brushes, Grab applies its full displacement in a single click-and-drag action rather than accumulating effect with repeated strokes. This makes it exceptionally responsive for establishing the broad silhouette of a sculpt: pulling a chin forward, widening a skull, or extending a limb. Because displacement occurs in screen space, the direction of the drag corresponds directly to the direction the mouse or stylus moves on screen, projected back into the 3D scene. For best results, use a large radius and moderate strength during the blocking phase, then reduce both as forms become more refined.

Smooth Brush — The Blending Tool

The Smooth brush is unique among Blender's sculpting tools because it is always accessible by holding Shift while using any other brush, making it the universal corrective gesture. Internally, it performs a Laplacian relaxation: each affected vertex moves toward the averaged position of its topological neighbors. Repeated application progressively eliminates high-frequency noise—small bumps, stretching artifacts, and staircase patterns from low-resolution meshes. However, over-smoothing can erase intentional detail, so it is essential to balance smoothing passes with periodic re-sculpting. Think of it as lightly running a damp sponge across the surface of a clay form to even out fingerprints without destroying the underlying gesture.

Inflate Brush — The Volume Builder

The Inflate brush (hotkey I) pushes each vertex outward along its own surface normal, causing the mesh to swell uniformly as if inflated from within. This behavior is critical for building organic volume: plumping out cheeks, swelling muscle bellies, or puffing up fabric folds. Because the displacement follows individual normals rather than a single direction, Inflate respects the local curvature of the surface—concave regions inflate inward slightly, convex regions inflate outward. Holding Ctrl while painting inverts the effect, producing a deflate operation that sinks the surface along reversed normals—useful for carving eye sockets or nostrils.

Crease Brush — The Detail Cutter

The Crease brush (hotkey Shift+C) combines two simultaneous operations: it displaces vertices inward along the negative normal and laterally pinches them toward the stroke centerline. This dual action produces a sharp, well-defined valley—ideal for nasolabial folds, eyelid creases, wrinkles, knuckle lines, and any anatomical feature characterized by a tight indentation. Inverting with Ctrl creates a ridge rather than a groove, which is useful for defining tendons, veins, or sharp bony prominences. Because Crease concentrates geometry into a narrow line, ensure you have sufficient mesh density (via a Multires modifier or Dyntopo) before applying it, otherwise the result will appear faceted rather than crisp.

Worked Example — Sculpting a Human Ear

The human ear is an excellent exercise for all four core brushes because it contains broad masses (the helix, concha), smooth transitions, inflated ridges, and sharp creases. The following walkthrough assumes you have a subdivided sphere or a base-mesh ear shape already in Sculpt Mode with at least 100,000 faces (use a Multires modifier at level 3–4 on a low-poly ear, or enable Dyntopo).

Sculpting an Ear with Grab, Inflate, Smooth, and Crease
1
Step 1 — Block Out the Silhouette with GrabSelect the Grab brush (G) and set a large radius (covering roughly half the ear). Pull the top edge upward and slightly backward to establish the helix curve. Drag the lower portion downward to form the lobe. Use three or four broad strokes to match your reference image's silhouette.
Result: a rough ear-shaped mass with correct overall proportions.
2
Step 2 — Build Volume with InflateSwitch to the Inflate brush (I) with a medium radius and strength around 0.4. Paint along the outer helix ridge to thicken it into a convincing cartilage form. Apply gentle inflate strokes to the tragus (the small flap in front of the ear canal) and the anti-tragus below it. Use Ctrl+Inflate (deflate) to deepen the concha—the bowl-shaped depression that leads to the ear canal.
Result: three-dimensional depth with distinct ridges and hollows.
3
Step 3 — Blend Transitions with SmoothHold Shift to activate the Smooth brush. Lightly pass over the transitions between the helix and the flat area behind the ear, blending hard edges left by the Grab strokes. Smooth the lobe until it appears soft and rounded. Be careful not to over-smooth the helix ridge—you want it to remain distinctly raised.
Result: seamless, organic-looking surface with clean form transitions.
4
Step 4 — Define Creases and Fine LinesSwitch to the Crease brush (Shift+C) with a small radius and moderate strength (0.5–0.7). Trace a line along the inner edge of the helix where it meets the anti-helix—this is the scapha groove. Add a crease where the anti-helix splits into its superior and inferior crura. Define the fold between the tragus and the concha. Each stroke should be deliberate and follow your anatomical reference.
Result: sharp, defined anatomical creases that sell the realism of the ear.
5
Step 5 — Iterate and RefineRotate the viewport frequently to check the form from multiple angles. Return to Grab for any proportion corrections, Inflate to restore volume lost during smoothing, Smooth to clean up crease artifacts, and Crease to re-sharpen lines that became blurred. Professional sculpting is an iterative loop: sculpt, evaluate, correct, repeat. With each pass, reduce brush radius and strength to work at progressively finer scales.
Result: a polished, anatomically convincing ear sculpt using only four brushes.

Strengths, Limitations & Comparisons

Comparative strengths and limitations of the four core sculpt brushes.
BrushStrengthsLimitations
GrabFastest way to reposition large areas; non-accumulating stroke gives precise control; excellent for posing and proportion work.Can stretch and distort topology if pushed too far; does not add or remove volume; struggles with fine detail.
SmoothAlways available via Shift; eliminates noise and artifacts; essential for blending transitions between forms.Over-application destroys detail and flattens silhouette; can create an overly soft, lifeless appearance.
InflateRespects surface curvature; excellent for organic volume; Ctrl-invert (deflate) is equally useful for carving recessions.Can create a bubbly, lumpy look if overused; strong strokes on concave areas produce unexpected inward inflation.
CreaseCreates sharp, defined lines impossible with other brushes; dual pinch-plus-sink action produces realistic anatomical detail.Requires high mesh density to avoid faceted results; aggressive strokes can self-intersect geometry; difficult to undo partially.
KEY TAKEAWAY
No single brush can produce a finished sculpt. The four core brushes form a complementary system, much like a painter's primary palette: Grab establishes the composition, Inflate builds the forms, Smooth blends them together, and Crease adds the final sharpness. Mastering the interplay between these four tools is more important than learning dozens of specialized brushes.

Connection to Advanced Sculpting Techniques

The four brushes covered in this lesson are foundational, but Blender's Sculpt Mode offers a much deeper toolset that builds upon the same underlying principles. Understanding Grab, Smooth, Inflate, and Crease thoroughly prepares you to adopt advanced brushes and workflows with minimal friction, because every sophisticated tool is essentially a specialized variant or combination of these core displacement patterns.

How core brush concepts extend into advanced sculpting tools.
Core Brush ConceptAdvanced ExtensionKey Difference
Grab (screen-space translation)Elastic Deform / Snake HookElastic Deform uses physics-based elasticity for more natural rubber-like deformation; Snake Hook extends trailing geometry.
Smooth (Laplacian relaxation)Surface Smooth / Mesh FilterSurface Smooth preserves volume better; Mesh Filter applies smoothing (or other operations) uniformly across the entire mesh.
Inflate (normal displacement)Blob / Clay Strips / LayerBlob adds volume with a spherical influence; Clay Strips simulates laying strips of clay; Layer limits height to a set maximum.
Crease (pinch + sink)Pinch / Line Project / Multires SculptingPinch isolates the lateral pull without sinking; Line Project carves hard-surface creases; Multires preserves base mesh topology for animation.

Beyond individual brushes, two mesh-density strategies directly affect how these tools perform. Dynamic Topology (Dyntopo) automatically adds or removes triangles where the brush touches, ensuring resolution follows your sculpting attention. Multiresolution (Multires) maintains a subdivision hierarchy so you can sculpt at multiple detail levels on a single mesh, switching between broad Grab strokes at level 1 and fine Crease work at level 5. Understanding when to use each strategy—and how the four core brushes behave differently on each—is one of the key competencies that separates intermediate from advanced digital sculptors.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain why the Grab brush displaces vertices in screen space rather than along surface normals. How does this design choice affect its utility compared to the Inflate brush?
PROBLEM 2BASIC APPLICATION
You are sculpting a character's nose on a subdivided sphere in Blender. Describe which of the four core brushes you would use first, second, third, and fourth, and briefly state what each accomplishes at that stage.
PROBLEM 3INTERMEDIATE
After applying several passes of the Inflate brush to build a character's cheekbone, you notice the surface has become lumpy and uneven. You apply Smooth to fix it, but now the cheekbone has lost its prominent shape and appears too flat. Describe a strategy for recovering the form while maintaining surface quality.
PROBLEM 4APPLIED
You are sculpting a creature's hand with Dyntopo enabled. When you try to use the Crease brush to define wrinkles on the knuckles, the result looks faceted and angular rather than crisp and smooth. Diagnose the problem and propose a solution that leverages your understanding of how the Crease brush interacts with mesh density.
PROBLEM 5CRITICAL THINKING
The Smooth brush performs Laplacian relaxation—moving each vertex toward the average position of its neighbors. Consider the implications: if you applied the Smooth brush infinitely many times to a closed mesh (like a sphere with sculptural detail), what geometric shape would the mesh converge toward, and why? Relate your answer to the mathematical behavior of iterative averaging on a graph.

Summary — Sculpting Brushes in Blender

Blender's Sculpt Mode provides a powerful set of tools for organic modeling, and the four core brushes—Grab, Smooth, Inflate, and Crease—form a complementary system that covers the full range of sculpting gestures. Grab translates vertices in screen space for massing and proportion work. Smooth performs Laplacian relaxation to blend transitions and remove artifacts. Inflate pushes vertices along their surface normals to add or remove volume. Crease combines inward displacement with lateral pinching to carve sharp, defined lines.

All four brushes share common parameters—radius, strength, and falloff curve—that control how displacement is distributed across affected vertices. The professional sculpting workflow follows a general-to-specific sequence: block out proportions with Grab, build volume with Inflate, blend with Smooth, and define detail with Crease, iterating through these stages at progressively finer scales. These four brushes serve as the foundation upon which all of Blender's more specialized sculpting tools—Elastic Deform, Clay Strips, Snake Hook, and others—are built.

Varsity Tutors • Blender • Sculpting Brushes — Use Sculpt Mode brushes (grab, smooth, inflate, crease)