Simplify Your Workflow: Search MiniWebtool.
Add Extension

My Toolbox

Automatic Mode

No saved tools yet.

Go Premium
See also
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?
Go Premium

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 PickerRandom Name Picker WheelImage ResizerFacebook User ID LookupLine CounterSort NumbersRSD Calculator - Relative Standard DeviationFPS ConverterRemove SpacesSun, Moon & Rising Sign Calculator 🌞🌙✨Random Quote Generator🖱️ Click Counter⬛ Aspect Ratio CalculatorWord to Phone Number ConverterMAC Address Lookup📷 OCR / Image to TextMAC Address GeneratorRandom Credit Card GeneratorJob FinderERA CalculatorMerge VideosJulian Date ConverterPercent Off CalculatorSquare Root (√) CalculatorSHA256 Hash GeneratorCm to Feet and Inches ConverterSum CalculatorSlope and Grade CalculatorWeight Loss CalculatorRoman Numerals ConverterBatting Average CalculatorIP Subnet CalculatorRandom Fake Address GeneratorMP3 LooperNumber of Digits CalculatorAdd Text to ImageBCD ConverterVertical Jump CalculatorStandard Error CalculatorRandom Truth or Dare GeneratorAudio SplitterInvisible Text GeneratorBitwise CalculatorRandom IMEI GeneratorPhone Number ExtractorRandom Superpower GeneratorLog Base 10 CalculatorName RandomizerImage SplitterRandom Writing Prompt GeneratorFeet and Inches to Cm ConverterMaster Number CalculatorText FormatterSalary Conversion CalculatorHalfway Date CalculatorRandom Activity GeneratorOctal CalculatorNumber to Word ConverterVideo CompressorLunar Calendar ConverterYouTube Channel StatisticsCaffeine Overdose CalculatorLong Division CalculatorCompound Growth CalculatorQuotient and Remainder CalculatorRandom Poker Hand GeneratorSun Position CalculatorSHA512 Hash GeneratorFirst n Digits of PiLeap Years ListFraction CalculatorEstimation CalculatorMultiplication CalculatorHebrew Calendar ConverterBinary to Gray Code ConverterRandom Movie PickerBolt Torque CalculatorEmail ExtractorRandom Birthday GeneratorWord Ladder GeneratorRandom Video Thumbnail GeneratorMD5 Hash GeneratorOPS Calculator🔍 Plagiarism CheckerBingo Card GeneratorList RandomizerRandom Meal GeneratorModulo CalculatorCompare Two StringsEquation of a Line CalculatorFile Size ConverterStair CalculatorFlip VideoOutlier CalculatorImage CompressorLimit CalculatorLove Compatibility CalculatorPercent Growth Rate CalculatorRandom Loadout GeneratorBroken Link CheckerRandom Emoji GeneratorArc Length CalculatorList of Prime NumbersMultiple Fraction CalculatorOrder of Operations Calculator (PEMDAS)Video to Image ExtractorLong Multiplication Calculator📅 Date Calculator🎰 Gacha Pity CalculatorAI Language DetectorAPI TesterInequality SolverAstrological Element Balance CalculatorMagic 8-BallRemove Lines Containing...🔊 Tone GeneratorWHIP CalculatorBreak Line by CharactersDay of Year CalendarPercent to PPM ConverterURL ExtractorBcrypt Hash Generator / CheckerRandom User-Agent GeneratorRandom Tournament Bracket GeneratorNumber ExtractorAdd Prefix and Suffix to TextChinese Gender PredictorName Number CalculatorRandomize NumbersRandom Line PickerDay of the Year Calculator - What Day of the Year Is It Today?IP Address to Hex ConverterPaycheck Calculator (Take-Home Pay)WAR CalculatorCone Flat Pattern (Template) Generator📊 Bar Graph MakereBay Fee CalculatorSocial Media Username CheckerDomain and Range CalculatorRandom Group GeneratorScientific Notation to Decimal ConverterAI Text HumanizerRandom Number PickerSaturn Return CalculatorWhat is my Zodiac Sign?Random Math Problem GeneratorImage CropperYouTube Tag ExtractorWhat is my Lucky Number?Random Object GeneratorSlugging Percentage CalculatorAdjust Video SpeedSocial Media Post Time OptimizerRadical SimplifierWhitespace VisualizerConnect the Dots GeneratorAlgebraic Expression SimplifierSigma Notation Calculator (Summation)AI Punctuation AdderDMS to Decimal Degrees ConverterWord Scramble GeneratorSquare Numbers ListAcreage CalculatorColor InverterLottery Number GeneratorRemove AccentTrigonometric Equation SolverDecibel (dB) CalculatorLogarithmic Equation SolverMercury Retrograde CalendarSum of Positive Integers CalculatorBattery Life CalculatorOn Base Percentage CalculatorPER CalculatorRandom Chord GeneratorSmall Text Generator ⁽ᶜᵒᵖʸ ⁿ ᵖᵃˢᵗᵉ⁾Image EnhancerLED Resistor CalculatorRatio to Percentage CalculatorWHOIS LookupRandom Excuse GeneratorArithmetic Sequence CalculatorScientific Notation CalculatorWire Resistance CalculatorVideo SplitterQuote FinderRemove Empty LinesAverage Deviation CalculatorHypotenuse CalculatorLbs to Kg Converter1099 Tax CalculatorEffect Size CalculatorHeight Percentile CalculatorLogic Gate SimulatorRemove Leading Trailing SpacesWater Usage CalculatorBCD to Decimal ConverterGray Code to Binary ConverterAI ParaphraserBinary to BCD ConverterSort Lines AlphabeticallyHex to BCD ConverterBCD to Binary ConverterBCD to Hex ConverterMedian CalculatorAverage CalculatorPVIFA CalculatorReverse VideoRemove Audio from VideoActual Cash Value CalculatorAngel Number CalculatorLog Base 2 CalculatorRoot Mean Square CalculatorSHA3-256 Hash GeneratorAI Sentence ExpanderTime Duration CalculatorHex to Decimal ConverterConvolution CalculatorMAC Address AnalyzerRandom String GeneratorMarkup CalculatorPVIF CalculatorDecimal to Hex ConverterInstagram Font GeneratorSocial Media Image Size GuideTikTok Money CalculatorTwitter/X Character CounterTwitter/X Timestamp ConverterYouTube 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 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 MPHMg to Ml ConverterAI Text SummarizerAI TranslatorAI Story GeneratorAI Poem GeneratorAI Song Lyrics GeneratorMcg to Mg ConverterIndian Land Unit ConverterTola to Gram ConverterPX to REM ConverterPT to PX ConverterMerge PDFSplit PDFCompress PDFPDF to JPGJPG to PDFRotate PDFDelete PDF PagesAdd Page Numbers to PDFProtect PDFReorder PDF PagesPDF Word CounterPDF Page ExtractorPDF to Text ExtractorUnlock PDF (Owner-Password Removal)PDF Flatten ToolAI Rap Lyrics GeneratorAI Cover Letter GeneratorAI Resume Bullet GeneratorAI LinkedIn Headline & Bio GeneratorAI Instagram Caption GeneratorAI YouTube Title & Description GeneratorAI Video Script GeneratorAI Product Description GeneratorAI Press Release GeneratorAI Wedding Speech GeneratorAI Thank-You Note GeneratorAI Dream InterpreterRandom Question GeneratorWould You Rather GeneratorNever Have I Ever GeneratorIcebreaker Question GeneratorCharades GeneratorPictionary Word GeneratorHangman Word GeneratorTrivia Question GeneratorRandom Fact GeneratorRandom Joke GeneratorDad Joke GeneratorPickup Line GeneratorCompliment GeneratorDaily Affirmation GeneratorJournal Prompt GeneratorDrawing Idea GeneratorFortune Cookie GeneratorFantasy Name GeneratorCapacitor Bank Sizing CalculatorSolar Charge Controller Sizing CalculatorBattery C-Rate CalculatorBattery Internal Resistance CalculatorPeukert Battery Runtime CalculatorPCB Via Current CalculatorBand Name GeneratorRap Name GeneratorNickname GeneratorTeam Name GeneratorGamertag GeneratorConvert Video for Twitter (X)
×

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)