1

完成有关如何 使用 Mathematica 中的图形绘制ConvexHullDelaunayTriangulation的问题,

我现在想在 Graphics中绘制VoronoiDiagram 。

考虑

Needs["ComputationalGeometry`"]
pts = RandomReal[{0, 10}, {60, 2}];
vdpts=VoronoiDiagram[pts]
4

1 回答 1

3

怎么样

Needs["ComputationalGeometry`"]
pts = RandomReal[{0, 10}, {10, 2}]
DiagramPlot[pts]

在此处输入图像描述

还是我错过了你的观点?

于 2011-06-25T12:49:56.887 回答