Effacer les filtres
Effacer les filtres

Voronoi Diagram with Delaunay Triangulation circle overlay with restrctions

2 vues (au cours des 30 derniers jours)
Sean
Sean le 19 Juin 2014
Commenté : wang le 11 Déc 2020
Is there a way to place restrictions on how Voronoi Diagrams, or Delaunay Triangulation operates as a Matlab function? For the code below I am trying to find out if it is possible to manipulate the voronoi point locations, or how the circles interact with the delaunay triangles (as well as remove the arcs), or something to achieve something close to the following picture (right).
clc; clear all; close all;
n=5;
x = 720*rand(1, n);
y = 360*rand(1, n);
voronoi(x,y,'--k');
DT = DelaunayTri(x', y');
% use this in newer versions of matlab
% DT = delaunayTriangulation (x, y);
hold all;
triplot(DT,'k-');
[centers, radii] = DT.circumcenters();
theta = -pi:pi/20:pi;
for iCircle=1:size(centers,1)
xCircle = centers(iCircle,1) + radii(iCircle)*cos(theta);
yCircle = centers(iCircle,2) + radii(iCircle)*sin(theta);
plot(xCircle, yCircle, 'b-');
end
plot(x,y,'+k', 'MarkerSize', 12)
axis equal;
hold on

Réponses (0)

Catégories

En savoir plus sur Delaunay Triangulation dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by