-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
898 lines (761 loc) · 21.6 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
2010-08-31 Mohammad mahdi Rahimi <https://github.com/mahi97/>
2010-08-31 Hidehisa Akiyama <[email protected]>
* NEWS:
* README:
* configure.ac:
- Initial release 0.0.0.
* fedit2.pro:
* mingw:
* mingw/rcsc.pro:
* src/fedit2.ico:
* src/fedit2.rc:
* src/src.pro:
* Makefile.am:
* src/Makefile.am:
- MinGW環境でのビルド設定を追加.
2010-08-30 Hidehisa Akiyama <[email protected]>
* configure.ac:
- cppunitのチェックを削除
2010-08-27 Hidehisa Akiyama <[email protected]>
* NEWS:
* README:
* configure.ac:
- initial release candidate.
* m4/ax_boost_base.m4:
- 最新のマクロに更新
* src/main_window.cpp:
- 実装されていないメニューを消去
* tool/average_formation.cpp:
- fixed typo
2010-06-19 Hidehisa Akiyama <[email protected]>
* src/edit_canvas.cpp:
- バックグラウンドデータの三角形分割を参照しべきところを,通常デー
タの三角形分割を参照していたバグを修正した
2010-06-02 Hidehisa Akiyama <[email protected]>
* tool/Makefile.am:
* tool/average_formation.cpp:
* Makefile.am:
* configure.ac:
* src/Makefile.am:
- 2つのフォーメーション設定ファイルから,平均値を取るフォーメーショ
ンを生成し,設定ファイルデータを出力するコマンドラインツールを追加
した
* src/edit_data.cpp:
- バックアップファイルの命名方法を変更し,タイムスタンプを末尾につ
けるようにした
2010-01-29 Hidehisa Akiyama <[email protected]>
* INSTALL:
* configure.ac:
* m4/qt.m4:
* reconfig.sh:
- qt.m4を更新
- ibrcscのサーチパスを追加
2009-09-14 Hidehisa Akiyama <[email protected]>
* src/edit_canvas.cpp:
* src/main.cpp:
- added keepaway field (not enabled by default)
- fixed copiright message.
2009-08-07 Hidehisa Akiyama <[email protected]>
* src/main.cpp:
- コピーライト出力を追加
2009-06-17 Hidehisa Akiyama <[email protected]>
* src/edit_canvas.cpp:
* src/edit_data.cpp:
- 古いcdtライブラリのヘッダインクルードを削除
2009-05-19 Hidehisa Akiyama <[email protected]>
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_data.h:
- 三角形分割を新しいTriangulationライブラリを使って作り直した.
2009-05-04 Hidehisa Akiyama <[email protected]>
* src/edit_canvas.cpp:
* src/edit_canvas.h:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
* src/options.cpp:
* src/options.h:
- implemented background data painting mode.
* src/Makefile.am:
* src/constraint_delegate.cpp:
* src/constraint_delegate.h:
* src/constraint_delegate.h:
* src/constraint_view.cpp:
* src/constraint_view.h:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
- added ConstraintDelegate class.
- implemented an action to replace constraints.
2009-05-03 Hidehisa Akiyama <[email protected]>
* src/constraint_edit_dialog.cpp:
* src/constraint_view.cpp:
* src/coordinate_delegate.cpp:
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_dialog.cpp:
* src/main_window.cpp:
* src/main_window.h:
* src/sample_view.cpp:
- removed debug messages.
- added an action to invoke a constraint edit dialog.
* src/Makefile.am:
* src/constraint_view.cpp:
* src/constraint_view.h:
* src/model_view_test.cpp:
* src/constraint_view.cpp:
* src/constraint_view.h:
* src/main_window.cpp:
* src/main_window.h:
* src/model_view_test.cpp:
- added ConstraintView class.
- implemented an action to delete constraints.
* src/sample_view.cpp:
- fixed the incorrect slot name.
* src/Makefile.am:
* src/main_window.cpp:
* src/main_window.h:
* src/sample_view.cpp:
* src/sample_view.h:
- renamed TreeView to SampleView.
- removed the unnecessary root item.
* src/Makefile.am:
* src/constraint_edit_dialog.cpp:
* src/constraint_edit_dialog.h:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
* src/constraint_edit_dialog.cpp:
* src/constraint_edit_dialog.h:
* src/edit_canvas.cpp:
* src/edit_canvas.h:
* src/edit_data.cpp:
* src/edit_data.h:
* src/edit_dialog.cpp:
* src/edit_dialog.h:
* src/main_window.cpp:
* src/main_window.h:
* src/tree_view.cpp:
* src/tree_view.h:
- implemented constraint edge operations, not completed yet.
2009-05-01 Hidehisa Akiyama <[email protected]>
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
* src/options.cpp:
* src/options.h:
- added constraint edit mode.
- implement selected vertex and candidate constraind edge
painting.
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_data.h:
- replaced DelaunayTriangulation with cdt::Triangulation.
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
- added M_half_edges to store the final half edges.
* configure.ac:
* rcsc/Makefile.am:
* rcsc/formation/Makefile.am:
* rcsc/formation/formation_cdt.cpp:
* rcsc/formation/formation_cdt.h:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
* src/Makefile.am:
* src/main_window.cpp:
- added FormationCDT class.
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_data.h:
* src/edit_dialog.cpp:
* src/main_window.cpp:
* src/tree_view.cpp:
- followed the changes of librcsc.
* Makefile.am:
* configure.ac:
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
* src/tree_view.cpp:
- supported changes of librcsc.
2009-04-28 Hidehisa Akiyama <[email protected]>
* src/coordinate_delegate.cpp:
- added value difference checking.
* src/coordinate_delegate.h:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
* src/tree_view.cpp:
* src/tree_view.h:
- implemented coordinates value delegate operations.
* src/Makefile.am:
* src/coordinate_delegate.cpp:
* src/coordinate_delegate.h:
* src/coordinate_delegate.cpp:
* src/tree_view.cpp:
* src/tree_view.h:
- added CoordinateDelegate class.
* src/tree_view.cpp:
* src/tree_view.h:
- improved drag & drop operations.
- changed the policy of double click handling.
2009-04-27 Hidehisa Akiyama <[email protected]>
* src/tree_view.cpp:
* src/tree_view.h:
- implemented drag & drop item move action.
* qt4/edit_view.cpp:
* src/edit_canvas.cpp:
* src/edit_canvas.h:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
* src/options.cpp:
* src/options.h:
* src/tree_view.cpp:
* src/tree_view.h:
- added 'Show Triangulation' switch.
- added 'Show Circumcircle' switch.
- implemented containd area painting.
- implemented circumcircle painting.
- implemneted vertex index change as a context menu action.
- implemneted deletion as a context menu action.
* src/Makefile.am:
* src/tree_view.cpp:
* src/tree_view.h:
* src/main_window.cpp:
* src/main_window.h:
- disabled basic Model/View.
- added TreeView class as a subclass of TreeWidget.
* src/main_window.cpp:
* src/main_window.h:
- disabled TableView and ListView.
2009-04-24 Hidehisa Akiyama <[email protected]>
* src/main_window.cpp:
* src/main_window.h:
- added QItemSelectionModel variable.
* src/edit_canvas.cpp:
* src/edit_canvas.h:
* src/main_window.cpp:
* src/main_window.h:
- added index spin box.
- implemented actions to select index.
- added list view and tree view for testing.
* configure.ac:
- added '--enable-gl' option.
* qt4/ball_item.cpp:
* qt4/edit_view.cpp:
* qt4/player_item.cpp:
- fixed rectangle size for setClipRect
- added USE_GLWIDGET support.
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
- implemented move data operation.
- added right click event handler for table view.
2009-04-23 Hidehisa Akiyama <[email protected]>
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
- implemented a data exchange operation.
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
* src/main_window.h:
- implemented data selection events.
* qt4/Makefile.am:
- renamed build target.
* src/main_window.cpp:
* src/main_window.h:
- implemented toggle actions for tool bar and status bar.
- implemented splitter window.
- added QTableView and QStandardItemModel.
* src/edit_canvas.cpp:
* src/edit_data.cpp:
* src/edit_data.h:
* src/main_window.cpp:
- implemented data insert/replace/delete operations.
- implemented vertex select operation.
2009-04-22 Hidehisa Akiyama <[email protected]>
* Makefile.am:
* qt4/Makefile.am:
* qt4/ball_item.cpp:
* qt4/edit_scene.cpp:
* qt4/player_item.cpp:
* qt4/triangulation_item.cpp:
* qt4/triangulation_item.h:
- enabled GraphicsView version again.
- renamed build target.
- added QPainter::setClipRect.
* src/edit_canvas.cpp:
* src/options.cpp:
- fixed selected player painting.
- disabled antialiasing by default.
* src/Makefile.am:
* src/edit_data.cpp:
* src/edit_data.h:
* src/edit_canvas.cpp:
* src/edit_canvas.h:
* src/edit_data.cpp:
* src/edit_data.h:
* src/edit_dialog.cpp:
* src/edit_dialog.h:
* src/main_window.cpp:
* src/main_window.h:
* src/mouse_state.h:
* src/options.cpp:
* src/options.h:
- added EditData class.
- implemented several data operatoins.
* src/Makefile.am:
* src/mouse_state.h:
* src/edit_canvas.cpp:
* src/edit_canvas.h:
* src/main_window.cpp:
* src/main_window.h:
* src/mouse_state.h:
- implemented mouse events.
- implemented zoom operations
2009-04-21 Hidehisa Akiyama <[email protected]>
* Makefile.am:
* configure.ac:
* src/Makefile.am:
* src/command.cpp:
* src/command.h:
* src/edit_canvas.cpp:
* src/edit_canvas.h:
* src/edit_dialog.cpp:
* src/edit_dialog.h:
* src/main.cpp:
* src/main_window.cpp:
* src/main_window.h:
* src/options.cpp:
* src/options.h:
- started to reimplement a painter based editor.
* qt4/edit_view.cpp:
- changed a viewport widget to QGLWidget.
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/player_item.cpp:
* qt4/player_item.h:
- reimplemented PlayerItem as a custum item.
* qt4/Makefile.am:
- renamed a built binary.
2009-04-20 Hidehisa Akiyama <[email protected]>
* qt4/edit_view.cpp:
- added antialiasing switching.
* qt4/edit_scene.cpp:
* qt4/edit_view.cpp:
* qt4/edit_view.h:
- reimplemented background painting without graphics items.
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/edit_scene.cpp:
- reimplemented BallItem as a custum shape item.
* qt4/Makefile.am:
* qt4/triangulation_item.cpp:
* qt4/triangulation_item.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
- added TriangulationItem.
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/command.cpp:
* qt4/edit_dialog.cpp:
* qt4/edit_dialog.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
* qt4/player_item.cpp:
- implemented file open operations.
2009-04-17 Hidehisa Akiyama <[email protected]>
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/edit_dialog.cpp:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
- added open actions, but not implemented yet.
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/edit_view.cpp:
* qt4/edit_view.h:
* qt4/player_item.cpp:
- enabled all items to fix a mouse wheel scroll.
2009-04-16 Hidehisa Akiyama <[email protected]>
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/options.h:
* qt4/player_item.cpp:
* qt4/player_item.h:
- implemented a background player mode.
* qt4/ball_item.cpp:
* qt4/edit_dialog.cpp:
* qt4/edit_dialog.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/player_item.cpp:
- implemented a dialog reset button.
- implemented a right click action.
* qt4/player_item.cpp:
* qt4/Makefile.am:
* qt4/player_item.h:
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/command.cpp:
* qt4/command.h:
* qt4/edit_dialog.cpp:
* qt4/edit_dialog.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/edit_view.cpp:
* qt4/main_window.cpp:
* qt4/main_window.h:
- added PlayerItem class.
- implemented a simple dialog update mechanism.
* qt4/Makefile.am:
* qt4/edit_dialog.cpp:
* qt4/edit_dialog.h:
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/command.cpp:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/edit_view.cpp:
* qt4/main_window.cpp:
* qt4/main_window.h:
- added EditDialog class.
- added ball item moving signals/slots.
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.h:
- added default z values for each object type.
- reimplemented moving object handling.
* qt4/ball_item.cpp:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/edit_view.cpp:
* qt4/edit_view.h:
* qt4/main_window.cpp:
- changed a signal sender for updating mouse position label from
EditScene to EditView.
2009-04-15 Hidehisa Akiyama <[email protected]>
* qt4/Makefile.am:
* qt4/command.cpp:
* qt4/command.h:
* qt4/edit_scene.cpp:
* qt4/main_window.cpp:
* qt4/main_window.h:
- started to use Qt4's undo framewrok.
* qt4/Makefile.am:
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/edit_view.cpp:
* qt4/edit_view.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
- implemented a hand scroll mode switch.
* qt4/Makefile.am:
* qt4/ball_item.cpp:
* qt4/ball_item.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/edit_view.cpp:
* qt4/edit_view.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
- added BallItem class.
- implemented enlarge mode.
* qt4/Makefile.am:
* qt4/edit_view.cpp:
* qt4/edit_view.h:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/main_window.cpp:
- added EditView class as a main graphics view object.
* qt4/Makefile.am:
* qt4/edit_scene.cpp:
* qt4/edit_scene.h:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
- added EditScene class as a main graphics scene object.
2009-04-14 Hidehisa Akiyama <[email protected]>
* configure.ac:
* Makefile.am:
* qt4/Makefile.am:
* qt4/main.cpp:
* qt4/main_window.cpp:
* qt4/main_window.h:
* qt4/options.cpp:
* qt4/options.h:
- started to implement a Qt4 version.
* m4/qt.m4:
- improved AX_QT4.
2009-04-13 Hidehisa Akiyama <[email protected]>
* configure.ac:
- added checking of librcsc_net and librcsc_time.
* qt3/fedit_canvas.cpp:
* qt3/fedit_canvas.h:
* qt3/fedit_data.cpp:
* qt3/fedit_dialog.cpp:
* qt3/fedit_dialog.h:
* qt3/formation_cdt.cpp:
- fixed typos.
2009-04-10 Hidehisa Akiyama <[email protected]>
* rcsc/geom/cdt/half_edge.cpp:
* rcsc/geom/cdt/triangulation.cpp:
- replaced Vector2D::operator==() with Vector2D::equalsWeakly().
2009-04-09 Hidehisa Akiyama <[email protected]>
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
- added Triangulation::existIntersectionWithConstraint()
- cleaned up.
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/delaunay_tree.h:
* rcsc/geom/cdt/half_edge.cpp:
* rcsc/geom/cdt/half_edge.h:
* rcsc/geom/cdt/test_delaunay_tree.cpp:
* rcsc/geom/cdt/test_triangle.cpp:
* rcsc/geom/cdt/test_triangulation.cpp:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
- cleaned up.
- improved performance. changed some set containers to a vector
container.
- change the policy of HalfEdge constructor.
* rcsc/geom/cdt/Makefile.am:
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
* rcsc/geom/cdt/test_line.cpp:
* rcsc/geom/cdt/half_edge.cpp:
* rcsc/geom/cdt/half_edge.h:
* rcsc/geom/cdt/test_triangle.cpp:
* rcsc/geom/cdt/test_triangulation.cpp:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
- replaced Line class with Segment2D class.
- removed line.{h,cpp} and test_line.cpp.
2009-04-08 Hidehisa Akiyama <[email protected]>
* qt3/formation_cdt.cpp:
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/delaunay_tree.h:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
- improved Triangulation::findTriangleContains().
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/delaunay_tree.h:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangulation.cpp:
- reimplemented DelaunayTree::findTriangleContains().
* rcsc/geom/cdt/Makefile.am:
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/delaunay_tree.h:
* rcsc/geom/cdt/half_edge.cpp:
* rcsc/geom/cdt/test_triangulation.cpp:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
- cleaned up.
- fixed doxygen comments.
* configure.ac:
* Makefile.am:
* rcsc/geom/cdt/Makefile.am:
* rcsc/geom/cdt/test_delaunay_tree.cpp:
* rcsc/geom/cdt/test_line.cpp:
* rcsc/geom/cdt/test_triangle.cpp:
* rcsc/geom/cdt/test_triangulation.cpp:
- moved test code from 'test' to 'rcsc/geom/cdt'.
* rcsc/geom/cdt/half_edge.cpp:
* rcsc/geom/cdt/half_edge.h:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangulation.cpp:
* test/triangle_test.cpp:
- changed arguments of HalfEdge constructor.
- renamed HalfEdge::line() to HalfEdge::segment().
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/half_edge.h:
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
* rcsc/geom/cdt/triangulation.cpp:
* test/line_test.cpp:
- removed Line::M_direction.
- added HalfEdge::direction().
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/half_edge.h:
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
* test/line_test.cpp:
* test/line_test.h:
* test/triangle_test.cpp:
- reimplemented some methods in Line class.
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
* rcsc/geom/cdt/triangulation.cpp:
* test/line_test.cpp:
* test/triangle_test.cpp:
- swapped argument order from Line(terminal,origin) to
Line(origin,terminal).
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
* rcsc/geom/cdt/triangulation.cpp:
- cleaned up.
2009-04-07 Hidehisa Akiyama <[email protected]>
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangle.h:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
* test/Makefile.am:
* test/delaunay_triangulation_test.cpp:
* test/line_test.cpp:
* test/line_test.h:
* test/triangle_test.cpp:
- fixed coding style.
- replacing Line class with rcsc::Segment2D.
2009-04-06 Hidehisa Akiyama <[email protected]>
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
- added projection(Vector2D).
* qt3/cdt-normal-formation-2.conf:
* qt3/cdt-normal-formation-2.dat:
* qt3/cdt-normal-formation.conf:
* qt3/cdt-normal-formation.dat:
* qt3/normal-formation.conf:
* qt3/normal-formation.dat:
- added test data.
* configure.ac:
- removed checking of boost.test.
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/half_edge.cpp:
* rcsc/geom/cdt/half_edge.h:
* rcsc/geom/cdt/line.cpp:
* rcsc/geom/cdt/line.h:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangle.h:
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
* rcsc/geom/cdt/vertex.h:
* test/delaunay_tree_test.cpp:
* test/delaunay_triangulation_test.cpp:
* test/line_test.cpp:
* test/triangle_test.cpp:
- cleaned up.
- fixed coding style.
2009-04-03 Hidehisa Akiyama <[email protected]>
* rcsc/geom/cdt/triangulation.cpp:
* rcsc/geom/cdt/triangulation.h:
* rcsc/geom/cdt/constrained_delaunay_triangulation.cpp:
* rcsc/geom/cdt/constrained_delaunay_triangulation.h:
* qt3/fedit_data.cpp:
* qt3/fedit_data.h:
* qt3/formation_cdt.h:
* rcsc/geom/cdt/Makefile.am:
* test/delaunay_triangulation_test.cpp:
* test/delaunay_triangulation_test.h:
- renamed CDT to Triangulation.
- supported the changes of librcsc.
2009-03-16 Hidehisa Akiyama <[email protected]>
* m4/cppunit.m4:
* Makefile.am:
* configure.ac:
* rcsc/geom/cdt/constrained_delaunay_triangulation.cpp:
* test/Makefile.am:
* test/delaunay_tree_test.cpp:
* test/delaunay_tree_test.h:
* test/delaunay_triangulation_test.cpp:
* test/delaunay_triangulation_test.h:
* test/line_test.cpp:
* test/line_test.h:
* test/main.cpp:
* test/point_test.cpp:
* test/point_test.h:
* test/triangle_test.cpp:
* test/triangle_test.h:
- reimplemented test code using cppunit.
2009-03-13 Hidehisa Akiyama <[email protected]>
* rcsc/geom/cdt/constrained_delaunay_triangulation.cpp:
* rcsc/geom/cdt/constrained_delaunay_triangulation.h:
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/delaunay_tree.h:
- fixed coding style.
2009-03-10 Hidehisa Akiyama <[email protected]>
* configure.ac:
* qt3/fedit_canvas.cpp:
* qt3/fedit_data.cpp:
* qt3/fedit_data.h:
* qt3/formation_cdt.cpp:
* qt3/formation_cdt.h:
* qt3/main_window.cpp:
* rcsc/geom/cdt/constrained_delaunay_triangulation.cpp:
* rcsc/geom/cdt/constrained_delaunay_triangulation.h:
* rcsc/geom/cdt/delaunay_tree.cpp:
* rcsc/geom/cdt/delaunay_tree.h:
* rcsc/geom/cdt/triangle.cpp:
* rcsc/geom/cdt/triangle.h:
- simple working version.
2009-03-07 Hidehisa Akiyama <[email protected]>
* m4/qt.m4:
* qt3:
* qt3/Makefile.am:
* qt3/fedit_canvas.cpp:
* qt3/fedit_canvas.h:
* qt3/fedit_config.cpp:
* qt3/fedit_config.h:
* qt3/fedit_data.cpp:
* qt3/fedit_data.h:
* qt3/fedit_dialog.cpp:
* qt3/fedit_dialog.h:
* qt3/main.cpp:
* qt3/main_window.cpp:
* qt3/main_window.h:
* qt3/mouse_state.h:
* xpm:
* xpm/chase.xpm:
* xpm/delete.xpm:
* xpm/hand.xpm:
* xpm/insert.xpm:
* xpm/new.xpm:
* xpm/open.xpm:
* xpm/record.xpm:
* xpm/replace.xpm:
* xpm/reverse.xpm:
* xpm/save.xpm:
* xpm/soccerwindow2-nostr.xpm:
* xpm/soccerwindow2.xpm:
* xpm/symmetry.xpm:
* xpm/train.xpm:
* Makefile.am:
* configure.ac:
- added fedit-qt3 sources.
2009-03-05 Hidehisa Akiyama <[email protected]>
* configure.ac:
- created new source package.