- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
interval_set.c
资源名称:leda.tar.gz [点击查看]
上传用户:gzelex
上传日期:2007-01-07
资源大小:707k
文件大小:1k
源码类别:
数值算法/人工智能
开发平台:
MultiPlatform
- #include <LEDA/plane.h>
- #include <LEDA/interval_set.h>
- #include <LEDA/window.h>
- main()
- {
- interval_set<segment> I;
- window W;
- W.init(-1000,1000,-1000);
- W.set_line_width(1);
- panel P("interval_set");
- P.text_item("Use the left mouse button to insert a set of segments, ");
- P.text_item("terminate the input by clicking the right button. Now, ");
- P.text_item("you can define query slabs by giving two vertical lines");
- P.text_item("with the left mouse button. For each slab, the program ");
- P.text_item("computes and shows all segments intersecting it. Leave ");
- P.text_item("the program by clicking the right mouse button. ");
- P.button("continue");
- P.open();
- segment s;
- while (W >> s)
- { W << s;
- if (s.xcoord1() <= s.xcoord2())
- I.insert(s.xcoord1(),s.xcoord2(),s);
- else
- I.insert(s.xcoord2(),s.xcoord1(),s);
- }
- W.set_mode(xor_mode);
- list<is_item> L;
- is_item it;
- double x0 = W.xmin();
- double x1 = W.xmin();
- point p;
- while (W >> p)
- {
- W.draw_vline(x0);
- W.draw_vline(x1);
- W.set_line_width(4);
- forall(it,L) W << I.inf(it);
- W.set_line_width(1);
- forall(it,L) W << I.inf(it);
- x0 = p.xcoord();
- W.draw_vline(x0);
- W >> p;
- x1 = p.xcoord();
- W.draw_vline(x1);
- L = I.intersection(x0,x1);
- forall(it,L) W << I.inf(it);
- W.set_line_width(4);
- forall(it,L) W << I.inf(it);
- W.set_line_width(1);
- forall(it,L) cout << I.inf(it) << "n";
- newline;
- }
- return 0;
- }