1. Parameters
ε (epsilon): Maximum distance for neighbors
MinPts: Minimum points to form dense region
2. Point Classification
Core: Has ≥MinPts neighbors within ε
Border: <MinPts neighbors, reachable from core
Noise: Not reachable from any core point
3. Cluster Formation
For each unvisited point, find neighbors. If core, expand cluster by connecting all density-reachable points. Continue until all points processed.
💡 Tip: Toggle "Show ε-Neighborhoods" and "Show Connections" to better understand how clusters form based on density connectivity.