BLENDER • MODELING FUNDAMENTALS

Proportional Editing — Use proportional editing for organic adjustments

Shape terrain, characters, and natural forms by influencing neighboring geometry through smooth falloff curves.

Historical Context & Motivation

Three-dimensional modeling software has always grappled with a fundamental tension: meshes are composed of discrete vertices, edges, and faces, yet the natural world rarely presents itself in angular, faceted forms. Early polygon modelers forced artists to select and transform vertices one at a time, resulting in stiff, mechanical deformations that demanded extensive manual correction. The need for a tool that could bridge the gap between discrete geometry and continuous organic form drove the development of what we now call proportional editing—a technique that extends a transformation's influence beyond the selected element to its neighbors, governed by a smooth falloff function.

The concept draws on ideas from earlier soft-selection implementations in commercial packages like Alias|Wavefront (later Autodesk Maya) and Softimage, which introduced weighted vertex influence during the 1990s visual-effects boom. Blender adopted and refined this paradigm across several releases, evolving proportional editing from a basic tool into a highly configurable system with multiple falloff types, connected-only modes, and per-axis constraints. Understanding this lineage helps contextualize why proportional editing occupies such a central role in organic modeling workflows today.

1992
Soft Selection in Alias Power Animator
Alias Research introduces weighted vertex selection in Power Animator, enabling VFX artists to smoothly deform character meshes for films—an early precursor to proportional editing concepts.
1998
Blender's Initial Public Release
NaN Technologies releases Blender commercially. Early versions include rudimentary transformation tools but lack a dedicated proportional editing mode, requiring artists to manually adjust neighboring vertices.
2004
Proportional Editing in Blender 2.3x
Following Blender's open-source release, community developers implement proportional editing with basic smooth and sharp falloff types, dramatically improving organic modeling workflows.
2011
Connected-Only Mode Added
Blender 2.5x introduces the Connected Only option, ensuring proportional influence follows mesh topology rather than 3D proximity—essential for editing overlapping geometry without unwanted side effects.
2020
Blender 2.8+ UI Overhaul
The redesigned header bar and tool settings make proportional editing more discoverable, adding real-time falloff curve previews and per-object proportional editing support for multi-object workflows.

The central question proportional editing answers is deceptively simple: how can an artist move a single vertex and have the surrounding surface respond as though it were a continuous, elastic material rather than a rigid lattice of disconnected points? This lesson explores the principles, falloff mathematics, practical techniques, and creative applications that make proportional editing an indispensable tool for sculpting terrain, shaping character silhouettes, and crafting any form that aspires to look alive.

Core Principles & Definitions

Proportional editing rests on a set of interlocking principles that, once internalized, give the modeler precise control over how transformations ripple outward from a selection. Rather than treating a vertex move as an isolated event, proportional editing treats it as the epicenter of a spatial influence field, where every vertex within a defined radius receives a fraction of the transformation, weighted by a falloff curve. The following foundational ideas govern how this system operates.

1

Influence Radius

The influence radius defines the sphere of effect around the selected element. Vertices outside this radius remain untouched. You adjust it interactively with the scroll wheel during a transform operation, and the gray circle in the viewport provides real-time visual feedback.
2

Falloff Type

The falloff type determines the shape of the weight curve from center (full effect) to edge (zero effect). Blender offers Smooth, Sphere, Root, Inverse Square, Sharp, Linear, Constant, and Random—each producing a distinct deformation profile suited to different modeling tasks.
3

Connected Only Mode

When Connected Only is enabled, proportional influence travels along mesh edges rather than through 3D Euclidean space. This prevents unrelated geometry that happens to be spatially nearby—such as the inside of a mouth affecting the outside of a cheek—from being inadvertently dragged along.
4

Transformation Stacking

Proportional editing works with all three fundamental transforms—Grab (G), Rotate (R), and Scale (S)—as well as axis constraints (X, Y, Z). This composability allows nuanced shaping: a proportional rotation around Z, for example, can create a convincing twist in a tree trunk.
5

Projected vs. Spherical Influence

By default, the influence radius is a 3D sphere. Enabling Projected (2D) mode flattens the influence into a circle on the screen plane, which is invaluable for landscape work where you want to push terrain upward without pulling subsurface vertices.
KEY TAKEAWAY
Think of proportional editing like pressing your thumb into wet clay: the clay directly under your thumb moves the most, but the surrounding material bulges and shifts in response, creating a smooth, organic transition rather than a sharp crater. The influence radius is how big your thumb is, and the falloff type determines whether you're pressing with a soft pad or a pointed stylus.

Visual Explanation — The Influence Field

The following diagram illustrates how proportional editing transforms a flat grid mesh into a smooth hill. At the center, a single vertex is selected and moved upward along the Z-axis. The influence radius extends outward, and the falloff curve determines how much each surrounding vertex follows the central vertex's movement. Vertices near the center rise almost as high as the selected vertex; those near the edge of the radius barely budge; and those outside the radius remain on the original plane entirely.

The left panel shows a flat grid with a single selected vertex (pink). The right panel shows the result of moving that vertex upward with Smooth falloff enabled. Surrounding vertices rise proportionally to their distance from the selection, creating a natural hill shape. The influence radius (purple bracket) marks the boundary beyond which vertices are unaffected.

Notice how the cross-section curves produced by the proportional edit resemble a Gaussian bell curve. This is not coincidental—the Smooth falloff is mathematically related to a cosine-based interpolation that approximates the gentle, symmetrical taper of a normal distribution. By changing the falloff type, you reshape this curve into sharper peaks, flatter plateaus, or irregular patterns, each suitable for different modeling tasks as we will explore in the following sections.

How Falloff Curves Work

Although Blender's proportional editing is primarily a visual, interactive tool, understanding the mathematical relationships behind falloff curves gives you predictive control over the resulting deformation. Each falloff type maps a normalized distance d (where 0 is the selected vertex and 1 is the edge of the influence radius) to a weight w between 0 and 1. The final displacement of any neighboring vertex equals the selected vertex's displacement multiplied by this weight.

GENERAL DISPLACEMENT
Δp_neighbor = w(d) × Δp_selected
Where Δp is the displacement vector, w(d) is the falloff weight at normalized distance d, and d = distance_to_selection ÷ influence_radius. When d ≥ 1, w = 0.
SMOOTH FALLOFF
w(d) = 3d² − 2d³ (Hermite interpolation, inverted: applied as w = 3(1−d)² − 2(1−d)³)
Produces a gentle S-curve with zero slope at both center and boundary—ideal for terrain and soft-body deformations. This is the default and most commonly used falloff.
LINEAR FALLOFF
w(d) = 1 − d
Produces a straight-line taper from full effect to zero. Useful for mechanical or faceted surfaces where you want a cone-shaped deformation rather than a rounded hill.
SHARP FALLOFF
w(d) = (1 − d)²
Concentrates influence near the center with a rapid drop-off. Effective for creating pinched or peaked features such as mountain summits, wrinkles, or creases.
💡 Tip: Choosing a Falloff
For most organic modeling, start with Smooth. Switch to Sharp when you need a more concentrated peak, or Sphere when you want the influence to remain strong across most of the radius before dropping off quickly at the edge, like inflating a balloon.

Detailed Breakdown — Falloff Type Comparison

Blender provides eight distinct falloff types, each producing a unique weight distribution across the influence radius. The following diagram superimposes the most commonly used falloff curves on a single graph, making it easy to compare how aggressively each curve tapers influence from center to edge. Below the diagram, a reference table maps each falloff type to its ideal use case in visual arts workflows.

The graph plots weight (vertical axis) against normalized distance from the selected vertex (horizontal axis) for five common falloff types. Smooth maintains influence longest before tapering gently. Linear decreases at a constant rate. Sharp drops steeply from the center. Sphere holds strength across most of the radius. Root falls off rapidly at the center then flattens.
Blender's proportional editing falloff types and recommended applications
Falloff TypeProfile ShapeBest Use Cases
SmoothGentle S-curve; zero slope at both endsRolling hills, character body mass, fabric folds
SphereHigh weight sustained, abrupt drop at edgeInflated surfaces, balloon shapes, uniform mounds
RootFast initial drop, slow tailBroad, shallow depressions; gentle dunes
SharpSteep exponential decay from centerMountain peaks, wrinkles, pinch details
LinearStraight diagonal from 1 to 0Cone shapes, geometric transitions, hard-surface blending
ConstantFlat weight of 1 everywhere within radiusBlock moves of vertex groups; uniform displacement
RandomStochastic weights per vertexRoughening surfaces, organic noise, terrain breakup

Worked Example — Sculpting a Terrain Hill

In this walkthrough, we will create a gentle hill on a subdivided plane, simulating a natural terrain feature. The goal is to demonstrate the complete proportional editing workflow from mesh setup to final adjustment, highlighting decision points around falloff selection and radius tuning.

Creating an Organic Hill on a Landscape Plane
1
Step 1 — Prepare the Base MeshAdd a Plane (Shift + A → Mesh → Plane). In the operator panel at the bottom left, or press F9, and leave the default size at 2 m. Enter Edit Mode (Tab). Subdivide the plane by right-clicking and selecting Subdivide. Set the Number of Cuts to 50 in the operator panel. This gives you a 50 × 50 grid—enough vertex density for a smooth deformation.
A 50 × 50 subdivided plane with 2,601 vertices.
2
Step 2 — Enable Proportional EditingIn the header bar of the 3D Viewport, locate the proportional editing icon (a circle with a dot). Click it or press O to toggle it on. The icon should now appear active (filled). Click the dropdown arrow next to it and select Smooth as the falloff type—this will produce the most natural terrain contour.
Proportional editing enabled with Smooth falloff.
3
Step 3 — Select the Peak VertexSwitch to Vertex Select mode (press 1 at the top of the keyboard). Click a vertex near the center of the grid—this will become the summit of the hill. Only one vertex should be selected.
Single center vertex selected.
4
Step 4 — Move with Proportional InfluencePress G to grab, then immediately press Z to constrain movement to the vertical axis. Before clicking to confirm, scroll the mouse wheel to adjust the influence radius. You will see a gray circle in the viewport expanding or contracting. Set the radius so it covers roughly 40% of the plane's width—this produces a broad, rolling hill. Move the mouse upward to raise the vertex approximately 0.5 m, then left-click to confirm.
A smooth, dome-shaped hill appears on the plane, with surrounding vertices displaced proportionally.
5
Step 5 — Refine with Secondary AdjustmentsTo add a secondary bump, select a vertex on the flank of the hill. Change the falloff to Sharp using the dropdown, reduce the influence radius (scroll wheel down during the grab), and move the vertex up slightly—about 0.15 m. This creates a smaller, steeper secondary peak that reads as a natural outcropping. Confirm with left-click. Switch back to Object Mode (Tab) and apply a Shade Smooth (right-click → Shade Smooth) to visualize the final organic surface.
A natural-looking terrain with a primary rolling hill and a secondary sharp peak, both created entirely with proportional editing.
Pro Tip
Press Shift + O to cycle through falloff types without leaving the transform operation. This lets you preview different curve shapes in real time before committing to one.

Proportional Editing vs. Alternative Deformation Tools

Proportional editing is not the only way to achieve smooth deformations in Blender. Sculpt Mode, lattice deformers, and mesh deform modifiers all serve overlapping purposes, yet each occupies a distinct niche. Understanding when to use proportional editing versus these alternatives is a mark of an efficient modeler. The following comparison highlights the strengths and limitations of each approach so you can make informed workflow decisions.

Comparison of deformation approaches in Blender
CriterionProportional EditingSculpt ModeLattice Deformer
PrecisionHigh—vertex-level control with numeric inputMedium—brush-based, freehandLow—coarse control points
Topology awarenessYes—Connected Only mode follows edgesNo—operates on surface proximityNo—affects enclosed volume uniformly
Undo granularityPer-operation (one undo per grab/rotate/scale)Per-strokePer control point move
Best forTerrain shaping, posing, broad silhouette editsFine organic detail, skin pores, muscle definitionGlobal deformation of finished models (squash & stretch)
Mesh density requirementModerate—needs enough verts for smooth curveHigh—requires dense mesh or dynamic topologyLow—works on any mesh
KEY TAKEAWAY
Think of proportional editing as a broad chisel and sculpt mode as fine sandpaper. A sculptor roughs out the form with the chisel first—establishing volume, silhouette, and major landmarks—before switching to abrasives for surface detail. Similarly, proportional editing excels at large-scale form shaping while sculpt mode handles surface refinement. Knowing when to switch tools is as important as knowing how to use each one.

Connection to Advanced Workflows

Proportional editing is a foundational technique, but it connects directly to several advanced Blender workflows that you will encounter as your modeling sophistication grows. Understanding these connections now will help you recognize when proportional editing is the right starting point and when you should graduate to more specialized tools. The table below maps proportional editing concepts to their advanced counterparts.

Proportional editing as a gateway to advanced Blender techniques
Proportional Editing ConceptAdvanced CounterpartWhen to Transition
Smooth falloff on a subdivided planeSculpt Mode with Elastic Deform brushWhen you need freehand, pressure-sensitive terrain detailing beyond what a single vertex selection offers
Influence radius controlShape Keys with blended weightsWhen you need to store and animate between multiple deformation states (e.g., facial expressions)
Connected Only modeVertex Groups with weight paintingWhen deformation regions must be precisely authored for animation rigs rather than defined by proximity
Random falloff for surface breakupGeometry Nodes displacementWhen procedural, non-destructive noise patterns are needed at render time across large environments

A particularly powerful advanced technique is combining proportional editing with Geometry Nodes. While proportional editing is inherently destructive—it permanently alters vertex positions—Geometry Nodes can replicate similar falloff-based displacement in a fully procedural, non-destructive pipeline. The falloff mathematics remain identical; what changes is the execution layer. As you advance, you will find that the intuition built through proportional editing—understanding how distance-weighted influence fields shape geometry—transfers directly to procedural node setups, making the transition feel natural rather than intimidating.

🔮 Looking Ahead
Proportional editing skills also prepare you for working with soft-body physics simulations and cloth simulations, where vertex influence and falloff are governed by physical properties like stiffness and damping. The mental model is the same: a disturbance at one point propagates outward with diminishing intensity.

Practice Problems

PROBLEM 1CONCEPTUAL
Explain why moving a single vertex on a dense grid with proportional editing enabled and Smooth falloff produces a hill shape rather than a spike. In your answer, reference the relationship between the falloff curve and the resulting surface profile.
PROBLEM 2BASIC APPLICATION
You have a 20 × 20 subdivided plane. You select a center vertex and move it 1.0 unit along Z with Linear falloff and an influence radius of 5 units. A neighboring vertex sits 3 units away from your selection. What is the approximate Z displacement of that neighbor?
PROBLEM 3INTERMEDIATE
You are modeling a character's torso and want to push the belly area outward slightly to suggest body mass. However, the character's inner-mouth geometry is spatially close to the belly wall. Describe the specific proportional editing settings you would use to avoid accidentally deforming the mouth geometry, and explain why those settings solve the problem.
PROBLEM 4APPLIED
You are creating an environment for an animated short film. The scene requires a rocky coastline with three distinct terrain features: (1) a broad, rolling sand dune; (2) a sharp rocky outcropping; and (3) a flat plateau with a sudden cliff edge. Describe how you would use proportional editing with different falloff types to create each feature on a single subdivided plane, specifying the falloff, approximate radius, and axis constraint for each.
PROBLEM 5CRITICAL THINKING
Proportional editing is a destructive operation—it permanently alters vertex positions once confirmed. Propose a non-destructive workflow in Blender that achieves a similar distance-weighted displacement effect, and critically evaluate the trade-offs between this approach and traditional proportional editing in terms of creative flexibility, performance, and ease of iteration.

Lesson Summary

Proportional editing extends the influence of vertex transformations to neighboring geometry through a distance-weighted falloff curve, enabling organic deformations on polygon meshes. The influence radius (adjusted via the scroll wheel) controls the spatial extent of the effect, while falloff types—Smooth, Sharp, Sphere, Linear, Root, Constant, Inverse Square, and Random—each produce a distinct deformation profile suited to different modeling tasks, from rolling terrain to peaked rock formations.

The Connected Only mode ensures influence travels along mesh topology rather than 3D proximity, preventing accidental deformation of unrelated geometry. Proportional editing works with all three fundamental transforms (Grab, Rotate, Scale) and pairs naturally with axis constraints for precise control. As a destructive but highly interactive tool, it excels at rapid blockout and large-scale form shaping, complementing sculpt mode's fine detail work and Geometry Nodes' procedural displacement. Mastering proportional editing builds the foundational intuition about distance-weighted influence fields that underpins advanced techniques including shape keys, weight painting, and procedural node-based workflows.

Varsity Tutors • Blender • Proportional Editing — Use proportional editing for organic adjustments