⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 geowin_d3hull.c

📁 A Library of Efficient Data Types and Algorithms,封装了常用的ADT及其相关算法的软件包
💻 C
字号:
#include <LEDA/geowin.h>#include <LEDA/plane_alg.h>#include <LEDA/d3_hull.h>#define D3_POINT    d3_point#define D2_POINT    point#define D2_POLYGON  polygonstatic void hull_2d( const list<D3_POINT>& Lin, D2_POLYGON& Pol){  D3_POINT p;  list<D2_POINT> inp;  list<D2_POINT> Lout;  forall(p,Lin) inp.append(p.project_xy());  Lout=CONVEX_HULL(inp);  if( Lout.length() >= 2 ) Pol = D2_POLYGON(Lout );}static void show_d3_points(geo_scene sc, d3_window& W, GRAPH<d3_point,int>& H){ GeoWin* gw = get_geowin(sc); list<D3_POINT> L; geowin_get_objects(*gw,sc,L); GRAPH<D3_POINT,int> G; D3_HULL(L,G);  H.join(G);}geowin_update<list<D3_POINT>, list<polygon> > HULL2d(hull_2d);int main(){  GeoWin GW( "D3 - Hulldemo");    list<D3_POINT> L;  geo_scene input =   geowin_new_scene(GW, L, show_d3_points);   GW.set_fill_color(input, blue );  GW.set_point_style(input, circle_point);   geo_scene output1 =  geowin_new_scene(GW, HULL2d, input, "Convex hull");  GW.set_color(output1,red);  GW.set_description(output1, "This scene holds the 2d convex hull\nof the projection of the input into the\nxy-plane. To show the 3d hull use\n'Show d3 output' from the window menu.\n");   GW.set_fill_color(output1, invisible);  GW.set_visible(output1,true );    GW.add_help_text("geowin_d3hull");  GW.edit(input);  return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -