My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
==================================================================
CHANGES FROM 0.4 to 0.5:
- Wrappers for C++ static methods have been implemented in a SWIG
compliant way. Static methods like:
BRep_Tool::Surface() is now callable with either BRep_Tool().Surface()
or BRep_Tool_Surface()
- Improved project quality : 64 unittests currently pass
- Many improvements related to the graphic side (better qtDisplay.py,
abstraction of the CSF_GraphicShr env var)
- Multi selection of entities (vertices, edges, faces, shapes)
- Many fixes and improvements to the 'addons' or Level2 API (meshing, PAF,
new experimental DYN package, topology etc.)
- New samples (Traits based parametric modeling, display customization etc.)
- License move from GNU General Public License v3 (GPLv3) to GNU Lesser
General Public License v3 (LGPLv3)

==================================================================
Detailed svn log for /trunk from the latest release (376 commits):

------------------------------------------------------------------------
r818 | tpaviot | 2010-01-05 15:35:37 +0100 (Mar, 05 jan 2010) | 1 line

Modified AUTHORS file
------------------------------------------------------------------------
r819 | tpaviot | 2010-01-05 17:21:38 +0100 (Mar, 05 jan 2010) | 1 line

Small fix in SGEOM_dependencies.i
------------------------------------------------------------------------
r820 | tpaviot | 2010-01-05 17:24:53 +0100 (Mar, 05 jan 2010) | 1 line

Small fix in GEOMAlgo_dependencies.i
------------------------------------------------------------------------
r821 | tpaviot | 2010-01-05 18:13:15 +0100 (Mar, 05 jan 2010) | 1 line

Small updates
------------------------------------------------------------------------
r822 | tpaviot | 2010-01-05 22:43:51 +0100 (Mar, 05 jan 2010) | 1 line

Better installer for win32 python26
------------------------------------------------------------------------
r823 | tpaviot | 2010-01-05 22:44:34 +0100 (Mar, 05 jan 2010) | 1 line

BugFix in path name
------------------------------------------------------------------------
r824 | tpaviot | 2010-01-06 07:10:38 +0100 (Mer, 06 jan 2010) | 1 line

Few updates
------------------------------------------------------------------------
r825 | tpaviot | 2010-01-06 07:14:31 +0100 (Mer, 06 jan 2010) | 1 line

fix in test_box.py
------------------------------------------------------------------------
r826 | tpaviot | 2010-01-06 07:17:31 +0100 (Mer, 06 jan 2010) | 1 line

Restored geometry modification in paf_smesh.py
------------------------------------------------------------------------
r827 | tpaviot | 2010-01-06 21:09:39 +0100 (Mer, 06 jan 2010) | 1 line

Small fixes
------------------------------------------------------------------------
r828 | tpaviot | 2010-01-08 09:14:59 +0100 (Ven, 08 jan 2010) | 1 line

Bugfix in environment.py
------------------------------------------------------------------------
r830 | tpaviot | 2010-01-13 05:29:54 +0100 (Mer, 13 jan 2010) | 1 line

Added Windows build scripts
------------------------------------------------------------------------
r831 | tpaviot | 2010-01-15 13:07:41 +0100 (Ven, 15 jan 2010) | 1 line

Added CMake build system support
------------------------------------------------------------------------
r832 | tpaviot | 2010-01-16 15:01:41 +0100 (Sam, 16 jan 2010) | 1 line

Updated CMakeLists.txt
------------------------------------------------------------------------
r833 | tpaviot | 2010-01-16 17:46:10 +0100 (Sam, 16 jan 2010) | 1 line

Added OCC libraries to CMakeLists.txt
------------------------------------------------------------------------
r834 | tpaviot | 2010-01-25 16:27:13 +0100 (Lun, 25 jan 2010) | 1 line

Update to the latest version of GEOM
------------------------------------------------------------------------
r835 | tpaviot | 2010-01-25 16:29:42 +0100 (Lun, 25 jan 2010) | 1 line

Updated to the latest revision trunk of salomesmesh
------------------------------------------------------------------------
r836 | tpaviot | 2010-01-25 16:33:06 +0100 (Lun, 25 jan 2010) | 1 line

Commited geom includes converter
------------------------------------------------------------------------
r837 | tpaviot | 2010-01-25 17:18:29 +0100 (Lun, 25 jan 2010) | 1 line

Updated SWIG files to latest revision of GEOM and SMESH
------------------------------------------------------------------------
r838 | tpaviot | 2010-01-25 17:22:08 +0100 (Lun, 25 jan 2010) | 1 line

bugfixes in the new headers
------------------------------------------------------------------------
r839 | tpaviot | 2010-01-25 18:27:52 +0100 (Lun, 25 jan 2010) | 1 line

Fixes for latest rev. of GEOM and SMESH
------------------------------------------------------------------------
r840 | tpaviot | 2010-01-25 18:46:12 +0100 (Lun, 25 jan 2010) | 1 line

Proper handle of std::vector to pythonlist
------------------------------------------------------------------------
r841 | tpaviot | 2010-01-29 08:31:07 +0100 (Ven, 29 jan 2010) | 1 line

Added the Lyx PAF tutorial
------------------------------------------------------------------------
r842 | tpaviot | 2010-01-29 08:34:02 +0100 (Ven, 29 jan 2010) | 1 line

Typesettings fixes
------------------------------------------------------------------------
r843 | tpaviot | 2010-02-17 05:54:14 +0100 (Mer, 17 fév 2010) | 1 line

Added Traits folder
------------------------------------------------------------------------
r844 | tpaviot | 2010-02-17 06:16:15 +0100 (Mer, 17 fév 2010) | 1 line

Added Henrik Rudstrom's trait based sample
------------------------------------------------------------------------
r845 | tpaviot | 2010-02-17 06:25:08 +0100 (Mer, 17 fév 2010) | 1 line

Modified button text
------------------------------------------------------------------------
r846 | tpaviot | 2010-02-17 06:33:49 +0100 (Mer, 17 fév 2010) | 1 line

Also modified function names
------------------------------------------------------------------------
r847 | tpaviot | 2010-02-20 14:52:11 +0100 (Sam, 20 fév 2010) | 1 line

Removed old packages from __init__.py
------------------------------------------------------------------------
r848 | tpaviot | 2010-02-21 15:52:22 +0100 (Dim, 21 fév 2010) | 1 line

Added DYN(Dynamic Simulation) package
------------------------------------------------------------------------
r849 | tpaviot | 2010-02-21 17:42:55 +0100 (Dim, 21 fév 2010) | 1 line

Added the domino demo
------------------------------------------------------------------------
r850 | tpaviot | 2010-02-21 22:31:18 +0100 (Dim, 21 fév 2010) | 1 line

wx fix, cleans up
------------------------------------------------------------------------
r851 | tpaviot | 2010-02-23 11:14:33 +0100 (Mar, 23 fév 2010) | 1 line

Improvements in PAF: get_shape method, automatic registration of operations at the context creation, display is now optional
------------------------------------------------------------------------
r887 | tpaviot | 2010-02-24 18:17:45 +0100 (Mer, 24 fév 2010) | 1 line

Added missing line in README
------------------------------------------------------------------------
r888 | tpaviot | 2010-02-24 18:19:02 +0100 (Mer, 24 fév 2010) | 1 line

Fixed wrong flag in README
------------------------------------------------------------------------
r890 | jelleferinga | 2010-02-26 11:03:05 +0100 (Ven, 26 fév 2010) | 1 line

work-in-progress on meshing/grouping a FEM mesh from pythonOCC
------------------------------------------------------------------------
r891 | jelleferinga | 2010-02-26 11:30:11 +0100 (Ven, 26 fév 2010) | 1 line

adding files from Kees Wouters tutorial
------------------------------------------------------------------------
r892 | tpaviot | 2010-02-27 16:52:27 +0100 (Sam, 27 fév 2010) | 1 line

Added trait_paf sample
------------------------------------------------------------------------
r893 | tpaviot | 2010-02-27 16:54:06 +0100 (Sam, 27 fév 2010) | 1 line

Geom objects are displayed whenever the display is initialized
------------------------------------------------------------------------
r894 | tpaviot | 2010-02-27 17:27:57 +0100 (Sam, 27 fév 2010) | 1 line

Fixed display bug
------------------------------------------------------------------------
r895 | tpaviot | 2010-02-27 18:28:39 +0100 (Sam, 27 fév 2010) | 1 line

Added data folder to /samples
------------------------------------------------------------------------
r896 | tpaviot | 2010-02-27 18:46:44 +0100 (Sam, 27 fév 2010) | 1 line

Added IGES sample files
------------------------------------------------------------------------
r897 | tpaviot | 2010-02-27 22:16:41 +0100 (Sam, 27 fév 2010) | 1 line

Few updates to the PAF tutorial
------------------------------------------------------------------------
r898 | jelleferinga | 2010-02-28 15:29:56 +0100 (Dim, 28 fév 2010) | 1 line

the PAFTest _step_changed method does not need to call my_context.solve nor my_context.update_display. The magic of PAF is that if a Parameters attribute is changed, that all is automagically updated...
------------------------------------------------------------------------
r899 | tpaviot | 2010-03-01 06:13:28 +0100 (Lun, 01 mar 2010) | 1 line

Renamed trait_paf sample, parameters map to Trait
------------------------------------------------------------------------
r900 | tpaviot | 2010-03-01 10:01:27 +0100 (Lun, 01 mar 2010) | 1 line

Fixed the Standard_Boolean & issue
------------------------------------------------------------------------
r901 | tpaviot | 2010-03-01 12:32:11 +0100 (Lun, 01 mar 2010) | 1 line

Added std::vector<int> and std::vector<double> STL support
------------------------------------------------------------------------
r902 | tpaviot | 2010-03-01 12:36:47 +0100 (Lun, 01 mar 2010) | 1 line

Added the SWIG file necessary to handle std::vector
------------------------------------------------------------------------
r903 | tpaviot | 2010-03-01 19:50:45 +0100 (Lun, 01 mar 2010) | 1 line

Updated SWIG Win32 files
------------------------------------------------------------------------
r904 | tpaviot | 2010-03-02 15:27:06 +0100 (Mar, 02 mar 2010) | 1 line

New GarbageCollector implementation
------------------------------------------------------------------------
r905 | tpaviot | 2010-03-02 18:33:46 +0100 (Mar, 02 mar 2010) | 1 line

New Level2 DYN sample
------------------------------------------------------------------------
r906 | tpaviot | 2010-03-02 18:34:57 +0100 (Mar, 02 mar 2010) | 1 line

It's possible to set a material or a texture separately
------------------------------------------------------------------------
r907 | tpaviot | 2010-03-02 18:35:32 +0100 (Mar, 02 mar 2010) | 1 line

Improvements in the DYN subpackage
------------------------------------------------------------------------
r908 | tpaviot | 2010-03-02 18:36:12 +0100 (Mar, 02 mar 2010) | 1 line

Added the DYN package to the installer script
------------------------------------------------------------------------
r909 | jelleferinga | 2010-03-03 12:15:57 +0100 (Mer, 03 mar 2010) | 1 line

extending geomplate example, still trimming outer edges to do... gave OCCViewer.DisplayShape an additional angle argument, such that shape can be displayed with higher resolution. Added a check in IGESReader such that it is checked whether a file exists before trying to read it ( which can cause segfaults )
------------------------------------------------------------------------
r910 | jelleferinga | 2010-03-03 15:13:04 +0100 (Mer, 03 mar 2010) | 1 line

updated the examples. still some glitches: we do not see the geometry being updated and the get_presentation method is missing
------------------------------------------------------------------------
r911 | tpaviot | 2010-03-04 09:13:37 +0100 (Jeu, 04 mar 2010) | 1 line

Updated Credits
------------------------------------------------------------------------
r912 | tpaviot | 2010-03-04 09:14:28 +0100 (Jeu, 04 mar 2010) | 1 line

Moved the curve_geom_plate.igs file to its right location
------------------------------------------------------------------------
r913 | tpaviot | 2010-03-04 09:23:17 +0100 (Jeu, 04 mar 2010) | 1 line

Code clean-up + small bugfix in comma separated arguments
------------------------------------------------------------------------
r914 | tpaviot | 2010-03-04 16:43:16 +0100 (Jeu, 04 mar 2010) | 1 line

Committed back the get_presentation method (accidentaly removed in rev.893)
------------------------------------------------------------------------
r915 | tpaviot | 2010-03-08 08:51:51 +0100 (Lun, 08 mar 2010) | 1 line

Added new multi_context.py PAF sample
------------------------------------------------------------------------
r916 | tpaviot | 2010-03-08 12:12:18 +0100 (Lun, 08 mar 2010) | 1 line

Added TopologyParameterizer module
------------------------------------------------------------------------
r917 | tpaviot | 2010-03-09 14:29:53 +0100 (Mar, 09 mar 2010) | 1 line

Removed Int and Double vectors from CommonIncludes.i
------------------------------------------------------------------------
r918 | tpaviot | 2010-03-09 17:31:25 +0100 (Mar, 09 mar 2010) | 1 line

Enabling mesh traversing: the SMDS_Mesh class now have nodeValue(index), edgeValue(index) and faceValue(index) overcoming the boost::shared_ptr wrapper issue
------------------------------------------------------------------------
r919 | tpaviot | 2010-03-09 18:04:39 +0100 (Mar, 09 mar 2010) | 1 line

Updated SWIG files with documentation string fix
------------------------------------------------------------------------
r920 | tpaviot | 2010-03-09 18:29:32 +0100 (Mar, 09 mar 2010) | 1 line

Fixed a linkage issue under Windows
------------------------------------------------------------------------
r921 | tpaviot | 2010-03-09 23:15:39 +0100 (Mar, 09 mar 2010) | 1 line

Small bugfix in unittest
------------------------------------------------------------------------
r922 | tpaviot | 2010-03-10 21:51:46 +0100 (Mer, 10 mar 2010) | 1 line

Added subclassing unittest
------------------------------------------------------------------------
r923 | tpaviot | 2010-03-10 21:52:53 +0100 (Mer, 10 mar 2010) | 1 line

Removed annoying info message in qtDisplay.py
------------------------------------------------------------------------
r924 | tpaviot | 2010-03-10 21:56:45 +0100 (Mer, 10 mar 2010) | 1 line

Added shape_splitter.py sample, based upon the GEOMAlgo_Splitter class
------------------------------------------------------------------------
r925 | tpaviot | 2010-03-16 11:30:18 +0100 (Mar, 16 mar 2010) | 1 line

Bugfix in brep_feat_local_revolution function from topology_local_operations.py sample script
------------------------------------------------------------------------
r926 | jelleferinga | 2010-03-16 11:33:56 +0100 (Mar, 16 mar 2010) | 1 line

rounding did not use an argument. so when building a box of say, 1.5, 0.5, 0.5 the box would be truncated to 1,1,1 which will segfault the ode module, since it cannot allow to create a body without mass
------------------------------------------------------------------------
r927 | jelleferinga | 2010-03-16 11:39:26 +0100 (Mar, 16 mar 2010) | 1 line


------------------------------------------------------------------------
r928 | jelleferinga | 2010-03-16 11:43:30 +0100 (Mar, 16 mar 2010) | 1 line

left some ipdb statements... sorry...
------------------------------------------------------------------------
r929 | jelleferinga | 2010-03-22 14:47:16 +0100 (Lun, 22 mar 2010) | 1 line


------------------------------------------------------------------------
r930 | jelleferinga | 2010-03-22 14:48:26 +0100 (Lun, 22 mar 2010) | 1 line


------------------------------------------------------------------------
r931 | jelleferinga | 2010-03-22 15:39:23 +0100 (Lun, 22 mar 2010) | 1 line

Hi Thomas, Im sorry to be committing your work, but I feel this is the *right* place for such an *import* example! -jelle
------------------------------------------------------------------------
r932 | tpaviot | 2010-03-22 17:18:22 +0100 (Lun, 22 mar 2010) | 1 line

Added push_context, pop_context, prevent_object methods for GC
------------------------------------------------------------------------
r933 | tpaviot | 2010-03-24 07:07:10 +0100 (Mer, 24 mar 2010) | 1 line

Added a first draft of the MSH subpackage
------------------------------------------------------------------------
r934 | jelleferinga | 2010-03-24 14:42:49 +0100 (Mer, 24 mar 2010) | 1 line

cleaner interface
------------------------------------------------------------------------
r935 | jelleferinga | 2010-03-24 14:43:03 +0100 (Mer, 24 mar 2010) | 1 line

cleaner interface
------------------------------------------------------------------------
r936 | tpaviot | 2010-03-24 14:58:19 +0100 (Mer, 24 mar 2010) | 1 line

case insensitive when setting backend to 'wx', 'qt' or 'x'
------------------------------------------------------------------------
r937 | tpaviot | 2010-03-24 15:01:37 +0100 (Mer, 24 mar 2010) | 1 line

Added the MSH subpackage to the installer script
------------------------------------------------------------------------
r938 | tpaviot | 2010-03-24 15:03:18 +0100 (Mer, 24 mar 2010) | 1 line

Bugfix in import_stl and import_iges samples
------------------------------------------------------------------------
r939 | tpaviot | 2010-03-24 15:05:21 +0100 (Mer, 24 mar 2010) | 1 line

Bugfix / Improvements in the Mesh module
------------------------------------------------------------------------
r940 | jelleferinga | 2010-03-24 16:13:32 +0100 (Mer, 24 mar 2010) | 3 lines

tried to update the dyn_demo as good as I can, but for instance domino fails ( or it looks different for sure ) rotating box is not visible, display_cog_traj does not show its trajectory.

still it is a lot cleaner than before ;')
------------------------------------------------------------------------
r941 | tpaviot | 2010-03-24 17:07:57 +0100 (Mer, 24 mar 2010) | 1 line

DYN improvements and bugfixes : mass always equals to 2. fix, use_boundingbox and use_trimesh options
------------------------------------------------------------------------
r942 | tpaviot | 2010-03-24 17:19:37 +0100 (Mer, 24 mar 2010) | 1 line

Fixed idiot bug in Context.py
------------------------------------------------------------------------
r943 | jelleferinga | 2010-03-24 17:48:56 +0100 (Mer, 24 mar 2010) | 1 line

segfaults on two_boxes_sphere_plane_collision
------------------------------------------------------------------------
r944 | tpaviot | 2010-03-24 18:25:50 +0100 (Mer, 24 mar 2010) | 1 line

Rolling back changes
------------------------------------------------------------------------
r945 | tpaviot | 2010-03-24 18:27:54 +0100 (Mer, 24 mar 2010) | 1 line

Small change
------------------------------------------------------------------------
r946 | tpaviot | 2010-03-24 21:43:21 +0100 (Mer, 24 mar 2010) | 1 line

Updated dyn_demo to the latest DYN revision
------------------------------------------------------------------------
r947 | tpaviot | 2010-03-24 21:44:22 +0100 (Mer, 24 mar 2010) | 1 line

Added trimesh_collision DYN sample
------------------------------------------------------------------------
r948 | tpaviot | 2010-03-24 21:55:52 +0100 (Mer, 24 mar 2010) | 1 line

Added use_sphere option
------------------------------------------------------------------------
r949 | tpaviot | 2010-03-24 22:24:09 +0100 (Mer, 24 mar 2010) | 1 line

Added the safe_yield function (for both wx and qt), that allows to keep control over window even when they loose idling
------------------------------------------------------------------------
r950 | tpaviot | 2010-03-24 22:25:03 +0100 (Mer, 24 mar 2010) | 1 line

Possible to handle the visualization window with the mouse/keyboard during the simulation
------------------------------------------------------------------------
r951 | jelleferinga | 2010-03-25 00:23:42 +0100 (Jeu, 25 mar 2010) | 2 lines

using calls from utils/construct.py
its important that the examples are written in a pythonic manner, so let's minimize ugly OCC idioms.
------------------------------------------------------------------------
r952 | jelleferinga | 2010-03-25 00:42:21 +0100 (Jeu, 25 mar 2010) | 1 line

bit of clean up, adding the make_plane function ( for DYN examples )
------------------------------------------------------------------------
r953 | jelleferinga | 2010-03-25 00:45:55 +0100 (Jeu, 25 mar 2010) | 1 line

oops...
------------------------------------------------------------------------
r954 | jelleferinga | 2010-03-25 09:25:24 +0100 (Jeu, 25 mar 2010) | 1 line

typo.
------------------------------------------------------------------------
r955 | tpaviot | 2010-03-25 10:00:06 +0100 (Jeu, 25 mar 2010) | 1 line

Fixed a 7 years old child mistake : the radius equals the diameter divided by 2
------------------------------------------------------------------------
r956 | tpaviot | 2010-03-30 12:49:09 +0200 (Mar, 30 mar 2010) | 1 line

Added clear method to the DynamicContext class
------------------------------------------------------------------------
r957 | tpaviot | 2010-03-30 13:43:49 +0200 (Mar, 30 mar 2010) | 1 line

Added contrib/users directory
------------------------------------------------------------------------
r958 | jelleferinga | 2010-03-30 14:26:52 +0200 (Mar, 30 mar 2010) | 1 line

clear method now works... sorry this took too many commits...
------------------------------------------------------------------------
r959 | tpaviot | 2010-03-30 15:37:27 +0200 (Mar, 30 mar 2010) | 1 line

Small bugfix in trimesh_collision
------------------------------------------------------------------------
r960 | tpaviot | 2010-03-30 16:18:54 +0200 (Mar, 30 mar 2010) | 1 line

Udpated MSH module
------------------------------------------------------------------------
r961 | tpaviot | 2010-03-30 16:19:28 +0200 (Mar, 30 mar 2010) | 1 line

Default mesh used by DYN is the basic OCC mesher
------------------------------------------------------------------------
r962 | dave.cowden | 2010-03-31 00:54:22 +0200 (Mer, 31 mar 2010) | 1 line


------------------------------------------------------------------------
r963 | tpaviot | 2010-04-02 09:06:54 +0200 (Ven, 02 avr 2010) | 1 line

DYN/Context:py: *added set_animation_frame_rate method to the DynamicContext class *fixed memory leak during animation
------------------------------------------------------------------------
r964 | tpaviot | 2010-04-02 17:41:06 +0200 (Ven, 02 avr 2010) | 1 line

Major bufixg in Mesh.py
------------------------------------------------------------------------
r965 | tpaviot | 2010-04-09 12:45:48 +0200 (Ven, 09 avr 2010) | 1 line

Added boost-1.42.0 headers to simplify compilation process
------------------------------------------------------------------------
r966 | tpaviot | 2010-04-09 15:00:27 +0200 (Ven, 09 avr 2010) | 1 line

Sync environment.py and setup.py with new boost include folder
------------------------------------------------------------------------
r967 | tpaviot | 2010-04-09 15:02:28 +0200 (Ven, 09 avr 2010) | 1 line

Resize to a standard screen size
------------------------------------------------------------------------
r968 | tpaviot | 2010-04-09 15:23:32 +0200 (Ven, 09 avr 2010) | 1 line

Removed boost stuff from README
------------------------------------------------------------------------
r969 | tpaviot | 2010-04-12 16:14:01 +0200 (Lun, 12 avr 2010) | 1 line

Moved samples to examples
------------------------------------------------------------------------
r970 | tpaviot | 2010-04-12 16:14:17 +0200 (Lun, 12 avr 2010) | 1 line

Moved samples to examples
------------------------------------------------------------------------
r971 | tpaviot | 2010-04-12 16:16:29 +0200 (Lun, 12 avr 2010) | 1 line

Removed file
------------------------------------------------------------------------
r972 | tpaviot | 2010-04-15 09:13:40 +0200 (Jeu, 15 avr 2010) | 1 line

Moved salomesmesh directory to SMESH
------------------------------------------------------------------------
r973 | tpaviot | 2010-04-15 09:14:03 +0200 (Jeu, 15 avr 2010) | 1 line

Removed salomesmesh
------------------------------------------------------------------------
r974 | tpaviot | 2010-04-15 09:24:12 +0200 (Jeu, 15 avr 2010) | 1 line

Added SMESH source code
------------------------------------------------------------------------
r975 | jelleferinga | 2010-04-18 23:13:49 +0200 (Dim, 18 avr 2010) | 5 lines

Hi Thomas,

The rounding caused some hefty numeric instabilities, I've been able to resolve many many crashes due to the rounding.

-jelle
------------------------------------------------------------------------
r977 | jelleferinga | 2010-04-19 15:38:33 +0200 (Lun, 19 avr 2010) | 2 lines

mistakenly I killed the MUST_REDISPLAY concept.
restoring.
------------------------------------------------------------------------
r978 | tpaviot | 2010-05-03 09:20:33 +0200 (Lun, 03 mai 2010) | 1 line

Added geometry and modeling tutorial
------------------------------------------------------------------------
r979 | tpaviot | 2010-05-03 09:33:09 +0200 (Lun, 03 mai 2010) | 1 line

Fixed bibliography broken links
------------------------------------------------------------------------
r980 | tpaviot | 2010-05-03 09:41:48 +0200 (Lun, 03 mai 2010) | 1 line

Remove unused imports
------------------------------------------------------------------------
r981 | tpaviot | 2010-05-03 09:44:42 +0200 (Lun, 03 mai 2010) | 1 line

from ... import *
------------------------------------------------------------------------
r982 | tpaviot | 2010-05-03 09:53:02 +0200 (Lun, 03 mai 2010) | 1 line

from ... import *;add->import
------------------------------------------------------------------------
r983 | tpaviot | 2010-05-03 10:04:06 +0200 (Lun, 03 mai 2010) | 1 line

Added History, Table of Content
------------------------------------------------------------------------
r984 | tpaviot | 2010-05-03 10:05:38 +0200 (Lun, 03 mai 2010) | 1 line

Removed r0.10 from document title (moved to History)
------------------------------------------------------------------------
r985 | jelleferinga | 2010-05-03 21:20:31 +0200 (Lun, 03 mai 2010) | 1 line

letting know that this is work in progress...
------------------------------------------------------------------------
r986 | tpaviot | 2010-05-04 17:09:14 +0200 (Mar, 04 mai 2010) | 1 line

Added a kind of helloworld example in order to test pythonOCC installation is ok
------------------------------------------------------------------------
r987 | tpaviot | 2010-05-05 06:41:28 +0200 (Mer, 05 mai 2010) | 1 line

SMESH is build as one static and dynamic libraries
------------------------------------------------------------------------
r988 | tpaviot | 2010-05-05 07:59:37 +0200 (Mer, 05 mai 2010) | 1 line

Bugfix, removed static build
------------------------------------------------------------------------
r989 | tpaviot | 2010-05-05 08:08:54 +0200 (Mer, 05 mai 2010) | 1 line

libSMESH is installed to /usr/local/lib by default on Linux and OSX
------------------------------------------------------------------------
r990 | tpaviot | 2010-05-05 08:13:32 +0200 (Mer, 05 mai 2010) | 1 line

Updated setup.py to simplified SMESH wrapper building
------------------------------------------------------------------------
r991 | tpaviot | 2010-05-05 08:38:24 +0200 (Mer, 05 mai 2010) | 1 line

Compilation of SMESH is performed from a python pipe in setup.py. Much better
------------------------------------------------------------------------
r992 | tpaviot | 2010-05-05 15:35:36 +0200 (Mer, 05 mai 2010) | 1 line

Removed SWIG warning 401 for Linux/MacOS
------------------------------------------------------------------------
r993 | tpaviot | 2010-05-05 15:37:30 +0200 (Mer, 05 mai 2010) | 1 line

Default OCC path for linux2 match Ubuntu10.04 OpenCASCADE6.3.0 installation
------------------------------------------------------------------------
r994 | tpaviot | 2010-05-06 05:20:39 +0200 (Jeu, 06 mai 2010) | 1 line

Moved the SalomeGeometry directory to GEOM
------------------------------------------------------------------------
r995 | tpaviot | 2010-05-06 05:21:15 +0200 (Jeu, 06 mai 2010) | 1 line

Removed SalomeGeometry directory
------------------------------------------------------------------------
r996 | tpaviot | 2010-05-06 05:53:34 +0200 (Jeu, 06 mai 2010) | 1 line

Added GEOM source files
------------------------------------------------------------------------
r997 | tpaviot | 2010-05-06 06:26:48 +0200 (Jeu, 06 mai 2010) | 1 line

Fixes in Exchange*
------------------------------------------------------------------------
r998 | tpaviot | 2010-05-06 11:32:55 +0200 (Jeu, 06 mai 2010) | 1 line

Updated to latest GEOM svn rev.
------------------------------------------------------------------------
r999 | tpaviot | 2010-05-06 12:48:30 +0200 (Jeu, 06 mai 2010) | 1 line

Finished new compilation process
------------------------------------------------------------------------
r1014 | tpaviot | 2010-05-10 06:03:25 +0200 (Lun, 10 mai 2010) | 1 line

Remove unuseful Windows module - make Unix/Windows API more consistent
------------------------------------------------------------------------
r1015 | tpaviot | 2010-05-10 06:04:30 +0200 (Lun, 10 mai 2010) | 1 line

Added build_geom.sh shell script
------------------------------------------------------------------------
r1016 | tpaviot | 2010-05-10 06:06:21 +0200 (Lun, 10 mai 2010) | 1 line

Windows bugfix wth M_PI
------------------------------------------------------------------------
r1017 | tpaviot | 2010-05-10 06:07:01 +0200 (Lun, 10 mai 2010) | 1 line

Added Windows compilation settings
------------------------------------------------------------------------
r1018 | tpaviot | 2010-05-10 08:46:23 +0200 (Lun, 10 mai 2010) | 1 line

Windows fixes
------------------------------------------------------------------------
r1019 | tpaviot | 2010-05-10 08:47:54 +0200 (Lun, 10 mai 2010) | 1 line

Windows fixes; MacOSX uses f77 as a fortran compiler
------------------------------------------------------------------------
r1020 | tpaviot | 2010-05-10 08:48:45 +0200 (Lun, 10 mai 2010) | 1 line

Windows installer improvements
------------------------------------------------------------------------
r1021 | tpaviot | 2010-05-10 08:49:38 +0200 (Lun, 10 mai 2010) | 1 line

Windows builder/installer fixes
------------------------------------------------------------------------
r1022 | tpaviot | 2010-05-10 08:59:55 +0200 (Lun, 10 mai 2010) | 1 line

Updated README
------------------------------------------------------------------------
r1023 | tpaviot | 2010-05-10 11:54:38 +0200 (Lun, 10 mai 2010) | 1 line

Removed dependencies to WOK
------------------------------------------------------------------------
r1024 | jelleferinga | 2010-05-14 20:05:47 +0200 (Ven, 14 mai 2010) | 1 line

fixed an issue with the abscissa function
------------------------------------------------------------------------
r1025 | tpaviot | 2010-05-21 08:48:35 +0200 (Ven, 21 mai 2010) | 1 line

Fix line ending
------------------------------------------------------------------------
r1026 | tpaviot | 2010-05-21 08:49:58 +0200 (Ven, 21 mai 2010) | 1 line

Updated help docstring
------------------------------------------------------------------------
r1027 | tpaviot | 2010-05-21 08:51:24 +0200 (Ven, 21 mai 2010) | 1 line

Use makedirs instead of mkdir in setup.py
------------------------------------------------------------------------
r1028 | tpaviot | 2010-05-21 08:57:18 +0200 (Ven, 21 mai 2010) | 1 line

Added GEOM_INSTALL_LIB_DIR option
------------------------------------------------------------------------
r1029 | tpaviot | 2010-05-21 08:57:46 +0200 (Ven, 21 mai 2010) | 1 line

Added GEOM_SMESH_LIB_DIR option
------------------------------------------------------------------------
r1030 | tpaviot | 2010-05-21 09:02:58 +0200 (Ven, 21 mai 2010) | 1 line

OCC_LIB_PATH patch
------------------------------------------------------------------------
r1031 | tpaviot | 2010-05-21 13:45:00 +0200 (Ven, 21 mai 2010) | 1 line

Moved README to INSTALL
------------------------------------------------------------------------
r1032 | tpaviot | 2010-05-25 06:34:38 +0200 (Mar, 25 mai 2010) | 1 line

Removed CSF_GraphicShr test from qtDisplay and wxDisplay (check performed in OCCViewer)
------------------------------------------------------------------------
r1033 | tpaviot | 2010-05-25 06:44:22 +0200 (Mar, 25 mai 2010) | 1 line

Added note 3.1; lines lenght compliant with unix terminals (79 char max)
------------------------------------------------------------------------
r1039 | tpaviot | 2010-05-25 15:46:24 +0200 (Mar, 25 mai 2010) | 1 line

Moved graphic code from C++ to python; clean up in the C++ code
------------------------------------------------------------------------
r1040 | tpaviot | 2010-05-25 17:57:01 +0200 (Mar, 25 mai 2010) | 1 line

Removed boost-1.42.0
------------------------------------------------------------------------
r1041 | tpaviot | 2010-05-25 17:58:26 +0200 (Mar, 25 mai 2010) | 1 line

Added boost-1.43.0
------------------------------------------------------------------------
r1042 | tpaviot | 2010-06-02 21:56:03 +0200 (Mer, 02 jui 2010) | 1 line

Fixed issue #11: wrapper for classes with protected constructor
------------------------------------------------------------------------
r1043 | tpaviot | 2010-06-04 06:15:40 +0200 (Ven, 04 jui 2010) | 1 line

Bugfix : protected constructor is not wrapped for abstract classes
------------------------------------------------------------------------
r1044 | jelleferinga | 2010-06-28 13:15:47 +0200 (Lun, 28 jui 2010) | 1 line

fixes a simple error in case the file to be copied is already in place
------------------------------------------------------------------------
r1045 | jelleferinga | 2010-06-28 15:38:37 +0200 (Lun, 28 jui 2010) | 30 lines

I noticed a serious regression: exporting as a .MED file no longer works...
I'm confident that we were able to write .MED files so this is pretty strange.


MSG:/Users/thomas/Devel/pythonocc/src/contrib/SMESH/src/SMESH/SMESH_Gen.cpp [288] : VSR - SMESH_Gen::Compute() finished, OK = 1

SCRUTE:/Users/thomas/Devel/pythonocc/src/contrib/SMESH/src/DriverDAT/DriverDAT_W_SMDS_Mesh.cpp [45] : myMesh = 0x10bb38ad0


(****************************)
(* INFORMATIONS GENERALES : *)
(****************************)
SCRUTE:/Users/thomas/Devel/pythonocc/src/contrib/SMESH/src/DriverDAT/DriverDAT_W_SMDS_Mesh.cpp [62] : nb_of_edges = 50

SCRUTE:/Users/thomas/Devel/pythonocc/src/contrib/SMESH/src/DriverDAT/DriverDAT_W_SMDS_Mesh.cpp [63] : nb_of_faces = 168

SCRUTE:/Users/thomas/Devel/pythonocc/src/contrib/SMESH/src/DriverDAT/DriverDAT_W_SMDS_Mesh.cpp [64] : nb_of_volumes = 0

172 218

(************************)
(* NOEUDS DU MAILLAGE : *)
(************************)

(**************************)
(* ELEMENTS DU MAILLAGE : *)
terminate called after throwing an instance of 'SMESH_Exception'
what(): SMESH Exception : "Not implemented ..."
(**************************)Abort trap

------------------------------------------------------------------------
r1046 | jelleferinga | 2010-06-29 12:53:36 +0200 (Mar, 29 jui 2010) | 2 lines

updated such that boundary conditions ( groups ) are set on the mesh
this allow code_aster to use and solve the mesh
------------------------------------------------------------------------
r1047 | jelleferinga | 2010-06-29 13:01:43 +0200 (Mar, 29 jui 2010) | 3 lines

cosmetic change, nothing to see here...
false use of try / except, changed for if statement.

------------------------------------------------------------------------
r1048 | jelleferinga | 2010-06-29 14:18:13 +0200 (Mar, 29 jui 2010) | 2 lines

a simple linear elasticity problem.
pre-processed by pythonocc
------------------------------------------------------------------------
r1049 | jelleferinga | 2010-07-02 16:30:06 +0200 (Ven, 02 jul 2010) | 3 lines

added transparancy to the bool ops examples.
also boolean fuse was missing

------------------------------------------------------------------------
r1050 | jelleferinga | 2010-07-02 18:09:45 +0200 (Ven, 02 jul 2010) | 1 line

added some bisector examples could be useful...
------------------------------------------------------------------------
r1051 | jelleferinga | 2010-07-05 21:46:42 +0200 (Lun, 05 jul 2010) | 1 line

fails...
------------------------------------------------------------------------
r1052 | jelleferinga | 2010-07-05 21:52:57 +0200 (Lun, 05 jul 2010) | 36 lines

Oops, I meant to test for this ERROR:

Tell me, does self.assertEqual test for Identity or Equality?
I think we are mixing up these concepts!!!


Finding files...
['/Users/localadmin/Documents/workspace/pyocc/src/unittest/hashing_unittest.py'] ... done
Importing test modules ... done.

testGP (hashing_unittest.Test) ... FAIL
testTopoDS (hashing_unittest.Test) ... ERROR

======================================================================
ERROR: testTopoDS (hashing_unittest.Test)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/localadmin/Documents/workspace/pyocc/src/unittest/hashing_unittest.py", line 40, in testTopoDS
self.assertEqual(faces1[0], faces1.index(faces1[0]))
File "/System/Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/unittest.py", line 348, in failUnlessEqual
if not first == second:
TypeError: in method 'TopoDS_Shape___eq__', argument 2 of type 'TopoDS_Shape const &'

======================================================================
FAIL: testGP (hashing_unittest.Test)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/Users/localadmin/Documents/workspace/pyocc/src/unittest/hashing_unittest.py", line 28, in testGP
self.assertEqual(p1,p3)
AssertionError: <OCC.gp.gp_Pnt; proxy of <Swig Object of type 'gp_Pnt *' at 0x105d4c950> > != <OCC.gp.gp_Pnt; proxy of <Swig Object of type 'gp_Pnt *' at 0x105d4c990> >

----------------------------------------------------------------------
Ran 2 tests in 0.003s

FAILED (failures=1, errors=1)

------------------------------------------------------------------------
r1053 | jelleferinga | 2010-07-07 15:12:25 +0200 (Mer, 07 jul 2010) | 39 lines

Hi Thomas,

Thanks for the feedback, although a number of issues remain.
Same thing; I have the feeling in the failed test there is being checked for identity ( id(aObject) rather than equality ( aObject == anotherObject ).
Hashing test for identity, not equality.

This is something we need to look into, since it is important to be able to compare TopoDS_* types.




jelle_laptop:unittest localadmin$ py hashing_unittest.py
FF
======================================================================
FAIL: testGP (__main__.Test)
----------------------------------------------------------------------
Traceback (most recent call last):
File "hashing_unittest.py", line 28, in testGP
self.assertEqual(p1,p3)
AssertionError: <OCC.gp.gp_Pnt; proxy of <Swig Object of type 'gp_Pnt *' at 0x105cb8950> > != <OCC.gp.gp_Pnt; proxy of <Swig Object of type 'gp_Pnt *' at 0x105cb8990> >

======================================================================
FAIL: testTopoDS (__main__.Test)
----------------------------------------------------------------------
Traceback (most recent call last):
File "hashing_unittest.py", line 41, in testTopoDS
self.assertEqual(box1,box2)
AssertionError: <OCC.TopoDS.TopoDS_Shape; proxy of <Swig Object of type 'TopoDS_Shape *' at 0x100c6be18> > != <OCC.TopoDS.TopoDS_Shape; proxy of <Swig Object of type 'TopoDS_Shape *' at 0x100c68018> >

----------------------------------------------------------------------
Ran 2 tests in 0.002s

FAILED (failures=2)
jelle_laptop:unittest localadmin$





------------------------------------------------------------------------
r1054 | jelleferinga | 2010-07-07 15:14:55 +0200 (Mer, 07 jul 2010) | 1 line

confusing name...
------------------------------------------------------------------------
r1059 | tpaviot | 2010-07-10 21:45:52 +0200 (Sam, 10 jul 2010) | 1 line

Fixed Issue #17 : CSF_GraphicShr does not require setting
------------------------------------------------------------------------
r1060 | tpaviot | 2010-07-11 07:32:59 +0200 (Dim, 11 jul 2010) | 1 line

Automatic setting of CSF_GraphicShr on MacOSX and Linux platforms
------------------------------------------------------------------------
r1061 | tpaviot | 2010-07-11 07:47:11 +0200 (Dim, 11 jul 2010) | 1 line

Need a better unittest of identity and equality
------------------------------------------------------------------------
r1062 | tpaviot | 2010-07-11 07:48:07 +0200 (Dim, 11 jul 2010) | 1 line

Renamed occ_unittest.py
------------------------------------------------------------------------
r1063 | jelleferinga | 2010-07-11 12:04:14 +0200 (Dim, 11 jul 2010) | 1 line

recent changes to Construct; for instance the make_edge2d function
------------------------------------------------------------------------
r1064 | jelleferinga | 2010-07-16 15:37:28 +0200 (Ven, 16 jul 2010) | 3 lines

Hi Thomas,

I've tried to update this example, but I cannot figure out why it is segfaulting... too bad, since its an interesting pattern!
------------------------------------------------------------------------
r1065 | tpaviot | 2010-08-14 14:11:02 +0200 (Sam, 14 aoû 2010) | 1 line

Fixed Issue #20: wrapper for C++ static methods
------------------------------------------------------------------------
r1066 | tpaviot | 2010-08-14 16:04:44 +0200 (Sam, 14 aoû 2010) | 1 line

Updated Win32 SWIG files to the new wrapper
------------------------------------------------------------------------
r1067 | tpaviot | 2010-08-16 17:25:46 +0200 (Lun, 16 aoû 2010) | 1 line

Fixed isse #13: string exceptions are not supported since python 26
------------------------------------------------------------------------
r1068 | tpaviot | 2010-08-18 08:48:28 +0200 (Mer, 18 aoû 2010) | 1 line

Fixed Windows compilation issue
------------------------------------------------------------------------
r1069 | tpaviot | 2010-08-18 14:13:57 +0200 (Mer, 18 aoû 2010) | 1 line

Added svn properties set to Context.py (experimental)
------------------------------------------------------------------------
r1070 | tpaviot | 2010-08-18 14:18:00 +0200 (Mer, 18 aoû 2010) | 1 line

Modified Context.py so that keywords are replaced in the file
------------------------------------------------------------------------
r1071 | tpaviot | 2010-08-18 15:37:04 +0200 (Mer, 18 aoû 2010) | 1 line

Small change on Context.py to test the tagging feature
------------------------------------------------------------------------
r1072 | tpaviot | 2010-08-19 08:46:01 +0200 (Jeu, 19 aoû 2010) | 1 line

Fixed Issue #19: dependent python modules are imported; Fixed regression of Issue #20: static method do not conflicts anymore with class names
------------------------------------------------------------------------
r1073 | tpaviot | 2010-08-19 08:48:24 +0200 (Jeu, 19 aoû 2010) | 1 line

Added unittest for fixes to Issue #19 and Issue #20
------------------------------------------------------------------------
r1074 | tpaviot | 2010-08-19 09:52:39 +0200 (Jeu, 19 aoû 2010) | 1 line

Updated linux/darwin SWIG files to latest status
------------------------------------------------------------------------
r1075 | tpaviot | 2010-08-19 09:54:26 +0200 (Jeu, 19 aoû 2010) | 1 line

Updated linux/darwin SWIG files to latest status
------------------------------------------------------------------------
r1076 | tpaviot | 2010-08-19 09:56:40 +0200 (Jeu, 19 aoû 2010) | 1 line

Update gp
------------------------------------------------------------------------
r1077 | tpaviot | 2010-08-19 09:57:20 +0200 (Jeu, 19 aoû 2010) | 1 line

Updated linux/darwin SWIG files to latest status
------------------------------------------------------------------------
r1078 | tpaviot | 2010-08-19 11:35:36 +0200 (Jeu, 19 aoû 2010) | 1 line

Updated win32 SWIG files to latest status
------------------------------------------------------------------------
r1079 | tpaviot | 2010-08-19 13:59:34 +0200 (Jeu, 19 aoû 2010) | 1 line

Bugfix: svn keyword anchor not properly set up (see Issue #22)
------------------------------------------------------------------------
r1080 | tpaviot | 2010-08-19 14:43:20 +0200 (Jeu, 19 aoû 2010) | 1 line

Updated license headers
------------------------------------------------------------------------
r1081 | tpaviot | 2010-08-19 18:22:39 +0200 (Jeu, 19 aoû 2010) | 1 line

Added Author/Date/Revision/HeadURL keyword properties
------------------------------------------------------------------------
r1082 | tpaviot | 2010-08-19 22:39:56 +0200 (Jeu, 19 aoû 2010) | 1 line

Fixed bad svn keywords (see Issue #22)
------------------------------------------------------------------------
r1083 | tpaviot | 2010-08-20 05:56:43 +0200 (Ven, 20 aoû 2010) | 1 line

Updated headers
------------------------------------------------------------------------
r1084 | tpaviot | 2010-08-22 18:23:16 +0200 (Dim, 22 aoû 2010) | 1 line

Bugfix in unittest
------------------------------------------------------------------------
r1085 | tpaviot | 2010-08-22 23:36:46 +0200 (Dim, 22 aoû 2010) | 1 line

Bugfix: updated code to current GEOM revision
------------------------------------------------------------------------
r1086 | tpaviot | 2010-08-23 05:50:58 +0200 (Lun, 23 aoû 2010) | 1 line

Updated header (see Issue #22)
------------------------------------------------------------------------
r1087 | tpaviot | 2010-08-23 05:58:00 +0200 (Lun, 23 aoû 2010) | 1 line

Fixed a regression introduced in the fix of Issue #20: renamed methods must not match C++ keywords (static, typename etc.)
------------------------------------------------------------------------
r1088 | tpaviot | 2010-08-23 08:00:44 +0200 (Lun, 23 aoû 2010) | 1 line

Update geometry_demos.py
------------------------------------------------------------------------
r1089 | tpaviot | 2010-08-24 07:18:12 +0200 (Mar, 24 aoû 2010) | 1 line

Fixed Issue #12: moved all const gp_* & and const TopoDS_* & passed and returned by reference to value
------------------------------------------------------------------------
r1090 | tpaviot | 2010-08-24 08:16:19 +0200 (Mar, 24 aoû 2010) | 1 line

Updated SWIG files for both linux/darwin/win32
------------------------------------------------------------------------
r1091 | tpaviot | 2010-08-24 08:28:42 +0200 (Mar, 24 aoû 2010) | 1 line

Added 2 unittests from examples
------------------------------------------------------------------------
r1092 | tpaviot | 2010-08-25 08:08:05 +0200 (Mer, 25 aoû 2010) | 1 line

Added new unittest
------------------------------------------------------------------------
r1093 | tpaviot | 2010-08-28 05:31:35 +0200 (Sam, 28 aoû 2010) | 1 line

Added topology_operations unittest
------------------------------------------------------------------------
r1105 | tpaviot | 2010-08-31 07:04:49 +0200 (Mar, 31 aoû 2010) | 1 line

Aggregate all unit tests in one test suite named test_all.py
------------------------------------------------------------------------
r1106 | tpaviot | 2010-09-24 05:52:54 +0200 (Ven, 24 sep 2010) | 1 line

Moved from format() to str() for python versions older than 2.6
------------------------------------------------------------------------
r1107 | jelleferinga | 2010-10-11 16:25:23 +0200 (Lun, 11 oct 2010) | 1 line

added a flag that allows you to set the schema version of the STEP file ( 214 / 203 )
------------------------------------------------------------------------
r1108 | tpaviot | 2010-10-12 06:58:52 +0200 (Mar, 12 oct 2010) | 1 line

Bugfix in STEP exporter schema; better consistency of the API and compliancy with PEP08
------------------------------------------------------------------------
r1109 | tpaviot | 2010-10-31 07:20:40 +0100 (Dim, 31 oct 2010) | 1 line

Move method names to lower_case (PEP8 compliancy)
------------------------------------------------------------------------
r1110 | tpaviot | 2010-12-01 06:14:30 +0100 (Mer, 01 déc 2010) | 1 line

Fixed Issue #23 : utf8 encoding
------------------------------------------------------------------------
r1111 | tpaviot | 2010-12-07 14:02:32 +0100 (Mar, 07 déc 2010) | 1 line

Fixed Issue #25 and Issue #26
------------------------------------------------------------------------
r1112 | jelleferinga | 2010-12-07 16:08:32 +0100 (Mar, 07 déc 2010) | 2 lines


added a really useful distance function...
------------------------------------------------------------------------
r1113 | tpaviot | 2010-12-07 22:23:10 +0100 (Mar, 07 déc 2010) | 1 line

Removed ipdb stuff
------------------------------------------------------------------------
r1114 | jelleferinga@gmail.com | 2010-12-27 21:25:32 +0100 (Lun, 27 déc 2010) | 1 line

# Thomas moved this code to OCC.Topology.Explorer ( a little reckless ;) many modules still follow this path, so let me keep it while not duplicating the code
------------------------------------------------------------------------
r1115 | jelleferinga | 2010-12-29 18:29:28 +0100 (Mer, 29 déc 2010) | 1 line


------------------------------------------------------------------------
r1116 | tpaviot | 2010-12-31 17:16:18 +0100 (Ven, 31 déc 2010) | 1 line

Implemented support for multi selection
------------------------------------------------------------------------
r1117 | tpaviot | 2010-12-31 17:53:34 +0100 (Ven, 31 déc 2010) | 1 line

Added zoom/selection from area
------------------------------------------------------------------------
r1118 | tpaviot | 2011-01-02 16:42:00 +0100 (Dim, 02 jan 2011) | 1 line

Bugfix in rect draw
------------------------------------------------------------------------
r1119 | tpaviot | 2011-01-02 16:42:36 +0100 (Dim, 02 jan 2011) | 1 line

Fixed multi selection support for wx
------------------------------------------------------------------------
r1120 | tpaviot | 2011-01-02 23:03:13 +0100 (Dim, 02 jan 2011) | 1 line

Bugfix in SMESH SWIG file (enabling Grouping feature)
------------------------------------------------------------------------
r1121 | tpaviot | 2011-01-02 23:09:15 +0100 (Dim, 02 jan 2011) | 1 line

Updated example to static method naming - Set selection mode to Vertex in order to test multiselection support
------------------------------------------------------------------------
r1122 | tpaviot | 2011-01-02 23:12:46 +0100 (Dim, 02 jan 2011) | 1 line

Added export to STL and UNV (MED still fails)
------------------------------------------------------------------------
r1123 | tpaviot | 2011-01-02 23:15:53 +0100 (Dim, 02 jan 2011) | 1 line

Bugfix in grouping
------------------------------------------------------------------------
r1124 | tpaviot | 2011-01-02 23:25:01 +0100 (Dim, 02 jan 2011) | 1 line

Cosmetic change to Display3d.cpp
------------------------------------------------------------------------
r1125 | tpaviot | 2011-01-02 23:29:18 +0100 (Dim, 02 jan 2011) | 1 line

Bugfixes in Mesh.py
------------------------------------------------------------------------
r1126 | tpaviot | 2011-01-03 00:25:38 +0100 (Lun, 03 jan 2011) | 1 line

Updated DYN
------------------------------------------------------------------------
r1127 | tpaviot | 2011-01-03 00:26:35 +0100 (Lun, 03 jan 2011) | 1 line

Updated dyn_demo.py
------------------------------------------------------------------------
r1128 | tpaviot | 2011-01-03 00:29:29 +0100 (Lun, 03 jan 2011) | 1 line

Updated TypesLookup to static method naming
------------------------------------------------------------------------
r1131 | tpaviot | 2011-01-09 14:21:37 +0100 (Dim, 09 jan 2011) | 1 line

Fixed interpolation unittest
------------------------------------------------------------------------
r1136 | tpaviot | 2011-01-18 06:48:29 +0100 (Mar, 18 jan 2011) | 1 line

Update to the latest geom release (5.1.2.7)
------------------------------------------------------------------------
r1137 | tpaviot | 2011-01-18 06:57:39 +0100 (Mar, 18 jan 2011) | 1 line

Added script to convert .hxx headers
------------------------------------------------------------------------
r1138 | tpaviot | 2011-01-18 09:31:46 +0100 (Mar, 18 jan 2011) | 1 line

Updated to official 5.1.2.2 SMESH latest release
------------------------------------------------------------------------
r1139 | tpaviot | 2011-01-18 10:08:09 +0100 (Mar, 18 jan 2011) | 1 line

Small fixes to CMakeList/smesh-5.2.2.2
------------------------------------------------------------------------
r1140 | tpaviot | 2011-01-18 10:09:01 +0100 (Mar, 18 jan 2011) | 1 line

Small fix to shell script/geom-5.1.2.7
------------------------------------------------------------------------
r1141 | tpaviot | 2011-01-18 10:11:19 +0100 (Mar, 18 jan 2011) | 1 line

Removed not sync'ed GEOM and SMESH libs
------------------------------------------------------------------------
r1142 | tpaviot | 2011-01-18 10:19:06 +0100 (Mar, 18 jan 2011) | 1 line

Moved Wrappers.py contribution from Dave Cowden to /branches/high_level_api
------------------------------------------------------------------------
r1146 | tpaviot | 2011-01-18 16:27:56 +0100 (Mar, 18 jan 2011) | 1 line

Added missing CMakeList.txt file
------------------------------------------------------------------------
r1147 | tpaviot | 2011-01-18 17:06:54 +0100 (Mar, 18 jan 2011) | 1 line

Fix bad import sample geomplate.py
------------------------------------------------------------------------
r1148 | tpaviot | 2011-01-18 17:38:00 +0100 (Mar, 18 jan 2011) | 1 line

Removed buggy interpolation
------------------------------------------------------------------------
r1149 | tpaviot | 2011-01-18 17:46:13 +0100 (Mar, 18 jan 2011) | 1 line

Fixed SMESH examples
------------------------------------------------------------------------
r1150 | tpaviot | 2011-01-18 17:47:36 +0100 (Mar, 18 jan 2011) | 1 line

Fixed volume_properties sample
------------------------------------------------------------------------
r1151 | tpaviot | 2011-01-18 17:55:28 +0100 (Mar, 18 jan 2011) | 1 line

Fixed test_thread example
------------------------------------------------------------------------
r1152 | tpaviot | 2011-01-18 17:57:58 +0100 (Mar, 18 jan 2011) | 1 line

Fixed topology_building example
------------------------------------------------------------------------
r1153 | tpaviot | 2011-01-18 22:10:40 +0100 (Mar, 18 jan 2011) | 1 line

Found a way to limit the API changes to the TopoDS() class when wrapping static methods
------------------------------------------------------------------------
r1156 | tpaviot | 2011-01-18 22:33:07 +0100 (Mar, 18 jan 2011) | 1 line

Updated geom and smesh libs
------------------------------------------------------------------------
r1157 | tpaviot | 2011-01-18 22:39:07 +0100 (Mar, 18 jan 2011) | 1 line

Small fix to env.py
------------------------------------------------------------------------
r1158 | tpaviot | 2011-01-18 22:43:07 +0100 (Mar, 18 jan 2011) | 1 line

Removed the unuseful and never used Toolikts folder
------------------------------------------------------------------------
r1159 | tpaviot | 2011-01-18 23:05:19 +0100 (Mar, 18 jan 2011) | 1 line

Added include path for Ubuntu
------------------------------------------------------------------------
r1160 | tpaviot | 2011-01-18 23:08:17 +0100 (Mar, 18 jan 2011) | 1 line

Added include path for Ubuntu
------------------------------------------------------------------------
r1161 | tpaviot | 2011-01-18 23:17:35 +0100 (Mar, 18 jan 2011) | 1 line

f2c used only under MacOSX
------------------------------------------------------------------------
r1162 | tpaviot | 2011-01-19 06:15:09 +0100 (Mer, 19 jan 2011) | 1 line

Removed installation of the Toolkit pacakges
------------------------------------------------------------------------
r1163 | tpaviot | 2011-01-19 07:03:19 +0100 (Mer, 19 jan 2011) | 1 line

int & and doule & output values for SMESH grouping feature
------------------------------------------------------------------------
r1165 | tpaviot | 2011-01-20 05:50:06 +0100 (Jeu, 20 jan 2011) | 1 line

Moved import to top
------------------------------------------------------------------------
r1166 | tpaviot | 2011-01-20 05:56:02 +0100 (Jeu, 20 jan 2011) | 1 line

Fix for int& and double& wrapper
------------------------------------------------------------------------
r1167 | tpaviot | 2011-01-20 06:00:09 +0100 (Jeu, 20 jan 2011) | 1 line

Added win32 useful path
------------------------------------------------------------------------
r1168 | tpaviot | 2011-01-20 06:00:37 +0100 (Jeu, 20 jan 2011) | 1 line

Enabled missing module
------------------------------------------------------------------------
r1169 | tpaviot | 2011-01-20 06:19:13 +0100 (Jeu, 20 jan 2011) | 1 line

Updated win32 SWIG files to the latest SWIG_generator state
------------------------------------------------------------------------
r1170 | tpaviot | 2011-01-20 06:46:04 +0100 (Jeu, 20 jan 2011) | 1 line

Updated testing suite to latest wrapper revision - *all* 64 tests should pass
------------------------------------------------------------------------
r1171 | tpaviot | 2011-01-20 06:38:59 +0100 (Jeu, 20 jan 2011) | 1 line

Updated lin/darwin SWIG files to the latest SWIG_generator state
------------------------------------------------------------------------
r1172 | tpaviot | 2011-01-20 06:59:10 +0100 (Jeu, 20 jan 2011) | 1 line

Added missing StdPrs module
------------------------------------------------------------------------
r1173 | tpaviot | 2011-01-20 07:00:09 +0100 (Jeu, 20 jan 2011) | 1 line

Added missing StdPrs module for win32
------------------------------------------------------------------------
r1177 | tpaviot | 2011-01-20 15:19:49 +0100 (Jeu, 20 jan 2011) | 1 line

Level1 examples sync'ed
------------------------------------------------------------------------
r1178 | tpaviot | 2011-01-20 15:40:54 +0100 (Jeu, 20 jan 2011) | 1 line

Updated license header to LGPL
------------------------------------------------------------------------
r1179 | tpaviot | 2011-01-20 15:41:29 +0100 (Jeu, 20 jan 2011) | 1 line

Updated license header to LGPL
------------------------------------------------------------------------
r1180 | tpaviot | 2011-01-20 15:45:09 +0100 (Jeu, 20 jan 2011) | 1 line

Updated license header to LGPL
------------------------------------------------------------------------
r1181 | tpaviot | 2011-01-20 15:46:44 +0100 (Jeu, 20 jan 2011) | 1 line

Small clean up - Remove unnecessary files
------------------------------------------------------------------------
r1182 | tpaviot | 2011-01-20 15:51:40 +0100 (Jeu, 20 jan 2011) | 1 line

Removed unnecessary stuff from setup.py (automated build of smesh and geom from this script is a bad thing)
------------------------------------------------------------------------
r1183 | tpaviot | 2011-01-20 19:07:09 +0100 (Jeu, 20 jan 2011) | 1 line

Added missing headrs directory
------------------------------------------------------------------------
r1184 | tpaviot | 2011-01-20 22:26:31 +0100 (Jeu, 20 jan 2011) | 1 line

A few more headers were missins. Weird.
------------------------------------------------------------------------
r1185 | tpaviot | 2011-01-20 23:47:41 +0100 (Jeu, 20 jan 2011) | 1 line

Fixed Level2 examples
------------------------------------------------------------------------
r1186 | tpaviot | 2011-01-20 23:48:59 +0100 (Jeu, 20 jan 2011) | 1 line

Fixed addons
------------------------------------------------------------------------
r1187 | tpaviot | 2011-01-20 23:50:57 +0100 (Jeu, 20 jan 2011) | 1 line

Updated INSTALL
------------------------------------------------------------------------
r1188 | tpaviot | 2011-01-20 23:53:00 +0100 (Jeu, 20 jan 2011) | 1 line

Moved license from GPLv3 to LGPLv3
------------------------------------------------------------------------
r1190 | tpaviot | 2011-01-21 09:12:40 +0100 (Ven, 21 jan 2011) | 1 line

Removed bisector.py example from trunk (missing make_edge2d function)
------------------------------------------------------------------------
r1193 | tpaviot | 2011-01-21 09:21:02 +0100 (Ven, 21 jan 2011) | 1 line

Added test_all_associative_methods from the example in the /examples/Level2/PAF location
------------------------------------------------------------------------
r1194 | tpaviot | 2011-01-21 09:34:50 +0100 (Ven, 21 jan 2011) | 1 line

Small clean up
------------------------------------------------------------------------
r1195 | tpaviot | 2011-01-21 10:03:18 +0100 (Ven, 21 jan 2011) | 1 line

Fixes in CADViewerMDI - Remove CADViewer.py (no need to have both programs)
------------------------------------------------------------------------

Change log

r1203 by tpaviot on Jan 21, 2011   Diff
Tagged 0.5 release
Go to: 
Project members, sign in to write a code review

Older revisions

r1197 by tpaviot on Jan 21, 2011   Diff
Updated CHANGELOG
r636 by tpaviot on Aug 28, 2009   Diff
Updated TODO and CHANGELOG
r627 by tpaviot on Aug 26, 2009   Diff
Updated CHANGELOG
All revisions of this file

File info

Size: 62203 bytes, 1292 lines
Powered by Google Project Hosting