Monotone-chain convex hull animated: points sorted by x, lower and upper chains built with pops on every clockwise turn.
Tip: use samples, upload, copy, download, and send-to actions inside the workspace where available.
Convex Hull Visualizer is a free, browser-based tool that helps you turn raw numbers into clear charts. Monotone-chain convex hull animated: points sorted by x, lower and upper chains built with pops on every clockwise turn. It's built for speed and privacy: Everything runs locally in your browser — your data is never uploaded to a server. No sign-up, no installs, and no daily limits.
Visualize the dataset after it has been cleaned enough for reliable labels and numeric values.
Review the preview, copy or download the result, and keep everything local in your browser.
Jarvis March Visualizer: Gift wrapping animated: from the leftmost point, sweep to the most counter-clockwise neighbor until the hull closes — O(n·h) made visible.
Open toolClosest Pair of Points Visualizer: Divide-and-conquer closest pair animated: split by x, best of both halves, then the δ-strip where each point checks at most 7 neighbors.
Open toolSegment Intersection Visualizer: Do two segments cross? Four CCW orientation tests answer it with no division — every pair tested and verdicts colored on the canvas.
Open tool1Convex hull (Andrew's monotone chain, a Graham-scan variant): sort points by x, build lower then upper chain, popping any point that makes a clockwise (non-left) turn.
sort points by xfor each point:pop while last turn is clockwisepush pointrepeat right-to-left for upper chainjoin chains → hull
The rubber band around a point set: build lower and upper chains, popping points that turn the wrong way.