Simplify Your Workflow: Search MiniWebtool.
Add Extension
Related Tools
Julia Set GeneratorMandelbrot Set ExplorerTessellation GeneratorPolar Equation PlotterDelaunay Triangulation GeneratorSeed Germination Rate Calculator
Home Page > Miscellaneous > General Tools > Voronoi Diagram Generator

Voronoi Diagram Generator

Generate Voronoi diagrams from a set of seed points online. Click the canvas to add or drag points, switch between Euclidean, Manhattan, Chebyshev and Minkowski distance metrics, pick from curated color palettes, watch cells animate into place, and export the result as SVG or PNG. Includes Lloyd relaxation, golden-spiral and hexagonal seed presets for crisp, even cells.

Voronoi Diagram Generator
Try a preset:
After generating, click the canvas to add points, drag to move, double-click to delete.

Embed Voronoi Diagram Generator Widget

✓ Generated

Euclidean — straight-line distance (classic) Scattered random · 18 seed points · Aurora (teal · violet · rose)

Metric euclidean
Cells 18
Avg area (px²)
Largest / smallest
720 × 480
click add point · drag move · dblclick delete · R relax once
📲

Install MiniWebtool App

Add to your home screen for instant access — free, fast, no download needed.

           

Want faster & ad-free?

About Voronoi Diagram Generator

The Voronoi Diagram Generator partitions a 2D plane into regions based on closeness to a set of seed points. Every point in the plane belongs to whichever seed is nearest, so the diagram looks like a patchwork of cells around the input points. This tool generates Voronoi diagrams interactively in your browser — drop new seeds with a click, drag any seed to redraw the cells in real time, switch between four distance metrics, and apply Lloyd relaxation to even out cell sizes. Export the result as crisp SVG or shareable PNG.

How it works: for every spot on the canvas, the algorithm finds the closest seed point and paints that spot with the seed's color. The boundary between any two cells is the perpendicular bisector of the segment between those two seeds — that is, the set of locations exactly equidistant from both. Three perpendicular bisectors meet at every cell-corner, which is also the center of a circle passing through three seed points (the empty circle property).

The four distance metrics — visualized

The shape of every Voronoi cell is determined by which distance metric you use. Each metric defines what "a circle" looks like — and that circle's shape is exactly the shape that bumps up against its neighbors to form cell boundaries.

Euclidean \(\sqrt{x^2 + y^2}\)
circle = circle
Manhattan \(|x|+|y|\)
circle = diamond
Chebyshev \(\max(|x|,|y|)\)
circle = square
Minkowski p=3 \((|x|^3+|y|^3)^{1/3}\)
circle = superellipse

That is why Manhattan-metric cells have only horizontal, vertical, and 45° edges, while Chebyshev cells have only horizontal and vertical edges — the boundary between two cells is always tangent to the shapes of those two "circles". Euclidean gives the classic curved-edged Voronoi everyone associates with the name. Minkowski p=3 is a mathematically elegant in-between case used in computational design where the L1 corners feel too harsh but the L2 circles feel too round.

What makes this generator different

✋ Real interactivity Click anywhere on the canvas to add a seed point; drag any seed to a new location and watch the cells flow with it; double-click a seed to delete. No other free Voronoi tool gives you live drag-to-edit feedback at this responsiveness — the diagram repaints under your finger in under 8 ms.
📏 Four metrics, one canvas Switch between Euclidean, Manhattan, Chebyshev, and Minkowski p=3 instantly via the pill switcher above the canvas. See the same point set produce wildly different cell shapes — a perfect teaching aid for distance metrics in courses on geometry, machine learning, or game design.
✿ Lloyd relaxation built in One-click Lloyd relaxation snaps each seed toward its cell centroid. Repeated passes produce a Centroidal Voronoi Tessellation — used in mesh generation, stippling, and image quantization to obtain visually uniform cells that tend toward a hexagonal packing.
🌱 Seven seed layouts Random scatter, Poisson-like uniform, square grid, hex grid, concentric rings, golden-ratio spiral, and three-cluster territories. The golden spiral matches phyllotaxis (sunflower seed packing). The hex grid is the natural fixed point of Lloyd relaxation. Every layout takes a reproducible random seed string.
🎨 Render-style options Filled cells (classic), wireframe edges (Delaunay-friendly view), distance heatmap (visualize the actual distance field), and stipple ink (artistic dotwork). Switch styles without re-generating — every style is rendered live from the same underlying classification.
⬇ SVG + PNG + Clipboard Vector SVG export wraps the cell colors as a single image plus the seed points as proper vector circles so they stay crisp at any zoom. PNG export for slides and social posts. Copy-PNG-to-clipboard for instant pasting into chat, docs, or design tools.

Where Voronoi diagrams show up

  • Cell-tower coverage maps — a phone connects to whichever tower it is closest to, which is exactly the Voronoi cell of that tower.
  • John Snow's 1854 cholera map — Snow drew the Voronoi cell around each water pump in Soho and counted cholera deaths inside each cell, isolating the contaminated Broad Street pump.
  • Procedural texturing — Worley noise (cellular noise) is used in everything from skin shaders to terrain generation in games like Minecraft and No Man's Sky.
  • Mesh generation — finite-element solvers prefer near-equilateral triangles, and the Delaunay triangulation (the dual of the Voronoi diagram) maximizes the smallest angle across all triangles.
  • Robot path planning — the edges of the Voronoi diagram around obstacle points are the safest paths a robot can take, because they maximize distance from every obstacle.
  • Stippling and halftoning — Lloyd-relaxed Voronoi diagrams produce visually pleasing point distributions used in artistic stippling and printer dithering.
  • Astronomy — galaxy super-clusters and the cosmic web display Voronoi-like structure thanks to gravitational clumping; Voronoi tessellation is a standard tool in galaxy-density estimation.
  • Crystallography — Wigner–Seitz cells (Voronoi cells around atoms in a lattice) define the primitive volume of every unit cell in solid-state physics.

Mathematical detail

Cell definition — for a finite set of seed points \(\{p_1, p_2, \dots, p_n\}\) and any metric \(d(\cdot,\cdot)\), the Voronoi cell of \(p_i\) is

\[ V_i = \{ x \in \mathbb{R}^2 \mid d(x, p_i) \le d(x, p_j),\ \forall j \neq i \} \]

so every cell is the intersection of half-spaces (for Euclidean metric) or half-planes (for L1/L∞). The cells partition the plane up to a measure-zero boundary set.

Centroidal Voronoi (Lloyd's fixed point) — at a CVT, every seed coincides with its cell's centroid:

\[ p_i = \frac{1}{|V_i|} \int_{V_i} x\, dA \]

Lloyd's algorithm iterates: classify pixels → move each seed to its cell's centroid → repeat. It always decreases the average within-cell second moment, so it converges. The hexagonal lattice is the global minimum for uniform density on a torus — which is why honeycombs are so efficient.

How to use this tool

  1. Pick a preset or set up the form. The preset chips at the top of the form are one-click starting points — Classic Cells, Honeycomb, City Blocks, Chess King, Golden Spiral, Ripples, Lloyd Relaxed, Wireframe, Stipple Ink, 3 Territories.
  2. Choose the distance metric. Euclidean for the classic look, Manhattan for blocky cells, Chebyshev for axis-aligned squares, Minkowski p=3 for rounded-square in-between cells.
  3. Click Generate. The diagram renders with an animated cell-growth reveal so you see how each seed "claims" its territory.
  4. Edit on the canvas. Click empty space to add a new seed point. Drag any seed dot to move it — the cells follow your finger in real time. Double-click a seed to delete it.
  5. Polish with Lloyd relaxation. Click the Lloyd relax button (or press R) to nudge every seed toward its cell's centroid. A few passes give you a visually uniform tessellation.
  6. Switch metric without losing your point set. Use the metric pills above the canvas — the same seeds, different distance rule, dramatically different cells.
  7. Export. SVG for vector use, PNG for raster sharing, or copy PNG straight to clipboard.

Tips for getting great-looking diagrams

  • For visually uniform cells, start with a Random or Uniform layout and apply 3–4 passes of Lloyd relaxation. You will see the cells converge toward a hexagonal pattern with very similar sizes.
  • For pop-art posters, use the Cluster layout with the Rainbow palette and turn on cell edges. The three territories produce a striking visual hierarchy with bold color blocks.
  • For technical-looking diagrams, use the Wireframe style on a Uniform layout — the clean black lines on white background read like a CAD drawing.
  • For organic, hand-drawn patterns, use the Stipple style — the algorithm reads cell edges as dotwork and produces a pen-and-ink look used in scientific illustration.
  • For mathematical clarity, switch to Manhattan or Chebyshev with a small point count (8–12 points). The right-angle edges make it easy to trace by hand why each cell has the shape it does.

Frequently asked questions

What is a Voronoi diagram?

A Voronoi diagram partitions a plane into cells based on which of a set of seed points each location is closest to. Every cell consists of all locations nearest to one specific seed. The cell boundaries are equidistant from two or more seeds.

How does this generator compute the diagram?

It uses brute-force per-pixel classification: for each pixel on the canvas it finds the nearest seed point under the chosen distance metric, then paints that pixel with that seed's color. The cost is O(W·H·N) but it is fully robust to degenerate inputs and trivially supports any distance metric.

What are the four distance metrics?

Euclidean is the straight-line distance giving the classic Voronoi look. Manhattan is the axis-aligned city-block distance. Chebyshev is the chess-king distance. Minkowski p=3 is a rounded-square in-between metric. Switching metrics on the same point set produces dramatically different cell shapes.

What is Lloyd relaxation?

Lloyd's algorithm repeatedly moves each seed point to the centroid of its current Voronoi cell. After several iterations the cells become visually uniform and tend toward a hexagonal honeycomb — the structure called a Centroidal Voronoi Tessellation.

Can I edit the points after generating?

Yes. Click anywhere on the canvas to add a new seed point. Drag any seed to move it — the diagram repaints continuously. Double-click a seed to delete it. The Reset button restores the original seed layout.

What is the difference between Voronoi and Delaunay?

They are graph duals. The Delaunay triangulation connects every pair of seeds whose Voronoi cells share an edge. Equivalently, three seeds form a Delaunay triangle if and only if no other seed lies inside the triangle's circumscribed circle.

Can I make the same diagram twice?

Yes. Type any string into the Random Seed field — the same string always reproduces the same initial point set. Combine that with the other form fields to share a permalink to an exact diagram.

What can I do with the exported SVG or PNG?

Free for personal and commercial use — diagrams generated by this tool are not watermarked or licensed. Use them for slides, blog illustrations, lecture notes, T-shirt prints, generative art prompts, or as base maps for further work in Illustrator or Inkscape.

Reference this content, page, or tool as:

"Voronoi Diagram Generator" at https://MiniWebtool.com/voronoi-diagram-generator/ from MiniWebtool, https://MiniWebtool.com/

by miniwebtool team. Updated: 2026-05-20

General Tools:

Top & Updated:

Instagram User ID LookupRandom Name PickerRandom PickerImage ResizerFacebook User ID LookupLine CounterSort NumbersRelative Standard Deviation CalculatorFPS ConverterSun, Moon & Rising Sign Calculator 🌞🌙✨Remove SpacesRandom Quote GeneratorWord to Phone Number ConverterMAC Address GeneratorERA CalculatorJob FinderCm to Feet and Inches Converter📷 OCR / Image to TextFeet and Inches to Cm Converter⬛ Aspect Ratio CalculatorSum CalculatorMAC Address LookupSquare Root (√) CalculatorBatting Average CalculatorSlope and Grade CalculatorSHA256 Hash GeneratorPercent Off CalculatorMerge Videos🖱️ Click CounterRandom Credit Card GeneratorVertical Jump CalculatorMP3 LooperWeight Loss CalculatorBitwise CalculatorRandom Truth or Dare GeneratorNumber of Digits CalculatorRandom Poker Hand GeneratorImage SplitterRandom IMEI GeneratorNumber to Word ConverterPhone Number ExtractorInvisible Text GeneratorSun Position CalculatorRandom Fake Address GeneratorAudio SplitterCaffeine Overdose CalculatorAdd Text to ImageRoman Numerals ConverterSalary Conversion CalculatorLog Base 10 CalculatorRandom Birthday GeneratorRandom Writing Prompt GeneratorText FormatterMaster Number CalculatorWord Ladder GeneratorRandom Superpower GeneratorRandom Activity GeneratoreBay Fee CalculatorYouTube Channel StatisticsCompound Growth CalculatorIP Subnet CalculatorOctal CalculatorRandom Movie PickerHalfway Date CalculatorRandom Playing Card GeneratorLunar Calendar ConverterFile Size ConverterBolt Torque CalculatorOPS CalculatorLong Division CalculatorSHA512 Hash GeneratorVideo CompressorStair CalculatorQuotient and Remainder CalculatorEmail ExtractorMercury Retrograde CalendarBinary to BCD ConverterRandom Meal Generator📅 Date CalculatorDecimal to BCD ConverterImage CompressorRandom Loadout GeneratorSlugging Percentage CalculatorPercent Growth Rate CalculatorBingo Card GeneratorName RandomizerBattery Life CalculatorBinary to Gray Code ConverterWord Scramble GeneratorLeap Years ListOn Base Percentage CalculatorFirst n Digits of PiVideo to Image ExtractorCompare Two StringsHebrew Calendar ConverterSaturn Return CalculatorSocial Media Username CheckerBreak Line by CharactersBCD to Decimal ConverterAPI TesterMartingale Strategy CalculatorList of Prime NumbersRandom Emoji GeneratorLED Resistor CalculatorMD5 Hash GeneratorFlip VideoJulian Date ConverterAcreage CalculatorNumber ExtractorOutlier CalculatorBcrypt Hash Generator / CheckerMegapixel to Print Size CalculatorModulo CalculatorVideo SplitterWAR CalculatorYouTube Tag ExtractorLove Compatibility CalculatorRandom Tournament Bracket GeneratorRandomize NumbersIP Address to Hex Converter🔍 Plagiarism CheckerRandom Chord GeneratorRandom Time GeneratorArc Length CalculatorWHIP CalculatorRandom Number PickerWhat is my Zodiac Sign?CM to Inches ConverterBCD to Binary ConverterCone Flat Pattern (Template) GeneratorList RandomizerPercentage Increase CalculatorMultiple Fraction CalculatorGray Code to Binary ConverterConnect the Dots GeneratorDay of the Year Calculator - What Day of the Year Is It Today?Day of Year Calendar🎰 Gacha Pity CalculatorRemove AccentAdd Prefix and Suffix to TextReverse VideoSigma Notation Calculator (Summation)Broken Link CheckerTime Duration CalculatorDMS to Decimal Degrees ConverterAI Language DetectorRatio to Percentage CalculatorTrigonometric Equation SolverBase64 DecoderSmall Text Generator ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾YouTube Thumbnail DownloaderEffect Size CalculatorRandom User-Agent GeneratorGolden Ratio CalculatorImage CropperPercent to PPM ConverterRandom Object GeneratorWhat is my Lucky Number?Text Case ConverterAstrological Element Balance CalculatorRandom Chess Opening GeneratorRatio Calculator🔊 Tone GeneratorBiological Age CalculatorAI Text HumanizerDecibel (dB) CalculatorFirst n Digits of eFraction CalculatorAm I Overweight?Color Inverter1099 Tax CalculatorAmortization CalculatorProportion CalculatorParabola CalculatorMultiplication CalculatorRandom Math Problem GeneratorAdjust Video SpeedURL ExtractorHelium Balloon Lift CalculatorImage EnhancerMAC Address AnalyzerHTML CompressorTwitter/X Timestamp ConverterAm I Underweight?Height Percentile CalculatorSection 8 Rent CalculatorIs it a Prime Number?Lbs to Kg ConverterArithmetic Sequence CalculatorRandom Group GeneratorRandom Line PickerRemove Leading Trailing SpacesWater Usage CalculatorYouTube Comment PickerName Number CalculatorSocial Media Post Time OptimizerRandom PIN GeneratorRandom User Persona GeneratorAI ParaphraserAI Punctuation AdderSort Lines AlphabeticallyHex to BCD ConverterLottery Number GeneratorBCD to Hex ConverterMedian CalculatorStandard Error CalculatorAverage CalculatorPVIFA CalculatorHypotenuse CalculatorRemove Audio from VideoActual Cash Value CalculatorScientific Notation to Decimal ConverterAngel Number CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSum of Positive Integers CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderHex to Decimal ConverterConvolution CalculatorRandom String GeneratorMarkup CalculatorPVIF CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterYouTube Watch Time CalculatorTwitch Earnings CalculatorYouTube Shorts Monetization CalculatorFacebook Ad Cost CalculatorSocial Media ROI CalculatorCTR CalculatorROAS CalculatorInfluencer ROI CalculatorForce CalculatorAcceleration CalculatorVelocity CalculatorMomentum CalculatorProjectile Motion CalculatorKinetic Energy CalculatorPotential Energy CalculatorWork and Power CalculatorDensity CalculatorPressure CalculatorIdeal Gas Law CalculatorFree Fall CalculatorTorque CalculatorHorsepower CalculatorDilution CalculatorChemical Equation BalancerStoichiometry CalculatorPercent Yield CalculatorEmpirical Formula CalculatorBoiling Point CalculatorTitration CalculatorMole/Gram/Particle ConverterIrregular Polygon Area CalculatorFrustum CalculatorTorus Calculator3D Distance CalculatorGreat Circle Distance CalculatorCircumscribed Circle (Circumcircle) CalculatorInscribed Circle (Incircle) CalculatorAngle Bisector CalculatorTangent Line to Circle CalculatorHeron's Formula CalculatorCoordinate Geometry Distance CalculatorVolume of Revolution CalculatorSurface of Revolution CalculatorParametric Curve GrapherRiemann Sum CalculatorTrapezoidal Rule CalculatorSimpson's Rule CalculatorImproper Integral CalculatorL'Hôpital's Rule CalculatorMaclaurin Series CalculatorPower Series CalculatorSeries Convergence Test CalculatorInfinite Series Sum CalculatorAverage Rate of Change CalculatorInstantaneous Rate of Change CalculatorRelated Rates SolverOptimization Calculator (Calculus)Gradient Calculator (Multivariable)Divergence CalculatorCurl CalculatorLine Integral CalculatorSurface Integral CalculatorJacobian Matrix CalculatorNewton's Method CalculatorRREF Calculator (Row Echelon Form)Matrix Inverse CalculatorMatrix Multiplication CalculatorDot Product CalculatorCross Product CalculatorVector Magnitude CalculatorUnit Vector CalculatorAngle Between Vectors CalculatorNull Space CalculatorColumn Space CalculatorCramer's Rule CalculatorMatrix Diagonalization CalculatorQR Decomposition CalculatorCholesky Decomposition CalculatorMatrix Power CalculatorCharacteristic Polynomial CalculatorBayes' Theorem CalculatorF-Test / F-Distribution CalculatorHypergeometric Distribution CalculatorNegative Binomial Distribution CalculatorGeometric Distribution CalculatorExponential Distribution CalculatorWeibull Distribution CalculatorBeta Distribution CalculatorSpearman Rank Correlation CalculatorFisher's Exact Test CalculatorContingency Table CalculatorOdds Ratio CalculatorBernoulli Equation CalculatorAP Score CalculatorAttendance Percentage CalculatorPercentage to CGPA ConverterCitation Generator (APA/MLA/Chicago)AI Quiz GeneratorAI Lesson Plan GeneratorInteractive Periodic TableElectron Configuration CalculatorLimiting Reactant CalculatorTheoretical Yield CalculatorHenderson-Hasselbalch CalculatorpKa to Ka ConverterMolality CalculatorNormality CalculatorPercent Composition CalculatorFreezing Point Depression CalculatorBoiling Point Elevation CalculatorOsmotic Pressure CalculatorNernst Equation CalculatorBeer-Lambert Law CalculatorGravitational Force CalculatorEscape Velocity CalculatorKepler's Third Law CalculatorTime Dilation CalculatorE=mc² CalculatorPhoton Energy Calculatorde Broglie Wavelength CalculatorTerminal Velocity CalculatorBuoyancy CalculatorWave Speed CalculatorSpeed of Sound CalculatorMechanical Advantage CalculatorInclined Plane CalculatorFriction CalculatorResistors in Series CalculatorWatts to Amps CalculatorAmps to Watts CalculatorkVA Calculator3-Phase Power CalculatormAh to Wh ConverterGenerator Size CalculatorLumens to Watts ConverterLux to Lumens CalculatorRoom Lighting CalculatorInductive Reactance CalculatorSeries/Parallel Capacitor CalculatorConduit Fill CalculatorAntenna Length CalculatorCubic Yard CalculatorAsphalt CalculatorSod CalculatorGrass Seed CalculatorDeck Stain CalculatorSiding CalculatorBaseboard & Trim CalculatorBaluster Spacing CalculatorEpoxy Resin CalculatorWater Heater Size CalculatorPool Volume CalculatorPool Salt CalculatorPond Volume & Liner CalculatorTV Size CalculatorTV Mounting Height CalculatorPicture Hanging Height CalculatorRug Size CalculatorCurtain Size CalculatorCeiling Fan Size CalculatorDehumidifier Size CalculatorAir Purifier CADR CalculatorFirewood Cord CalculatorCouch Fit CalculatorEngine Displacement Calculator2-Stroke Oil Mix CalculatorOctane Mix CalculatorLease Buyout CalculatorCost Per Mile CalculatorTire Load Index & Speed Rating LookupWheel Offset CalculatorWilks & DOTS CalculatorACFT Score CalculatorRowing Pace CalculatorHiking Time CalculatorBeep Test CalculatorFTP & Power Zones CalculatorRunning Age-Grading CalculatorHeart Rate Recovery CalculatorElo Rating CalculatorK/D Ratio CalculatorNet Run Rate CalculatorBatting Strike Rate CalculatorBowling Economy CalculatorDart Checkout CalculatorStableford CalculatorSpeedrun Split TimerBike Size CalculatorSnowboard Size CalculatorHat Size ConverterGlove Size CalculatorHelmet Size CalculatorSki Size CalculatorSurfboard Volume CalculatorTennis Grip Size CalculatorBackpack Size CalculatorCelsius to Fahrenheit ConverterFahrenheit to Celsius ConverterKm to Miles ConverterMiles to Km ConverterMM to Inches ConverterInches to MM ConverterStone to Kg ConverterKg to Stone ConverterLiters to Gallons ConverterGallons to Liters ConverterML to Oz ConverterOz to ML ConverterSquare Meters to Square Feet ConverterSquare Feet to Square Meters ConverterCubic Feet to Cubic Yards ConverterCubic Meters to Cubic FeetKnots to MPH ConverterMPH to KMH / KMH to MPH
×

Do us a favor and answer 3 quick questions

Thank you for participating in our survey. Your input will help us to improve our services.

Where exactly did you first hear about us?

What is your favorite tool on our site?

if Other, please specify:

How likely is it that you would recommend this tool to a friend?

NOT AT ALL LIKELYEXTREMELY LIKELY

Likely score: (1-10)