源码地址

This commit is contained in:
kura 2024-12-17 17:56:18 +08:00
parent 817a4a0a30
commit 0e2aeebddc

View File

@ -4,6 +4,7 @@
<title>凸包算法</title> <title>凸包算法</title>
</head> </head>
<body> <body>
<a href="https://git.kuraa.cc/kura/convex_hull">git源码</a>
<textarea style="width: 100%;height: 100px;" id="points" placeholder="输入点格式x1,y1;x2,y2;x3,y3;..."></textarea> <textarea style="width: 100%;height: 100px;" id="points" placeholder="输入点格式x1,y1;x2,y2;x3,y3;..."></textarea>
<button onclick="convex_hull()">计算凸包</button> <button onclick="convex_hull()">计算凸包</button>
<button onclick="randomPointsToTextarea(30)">随机30点</button> <button onclick="randomPointsToTextarea(30)">随机30点</button>