summaryrefslogtreecommitdiff
path: root/inc/HatchGen_Hatcher.gxx
blob: e8e312727e82aec93da557edc4a28d3435da8934 (plain)
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
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
// File:	HatchGen_Hatcher.gxx
// Created:	Thu Nov  4 12:15:37 1993
// Author:	Jean Marc LACHAUME
//		<jml@sdsun1>



#include <HatchGen_Domain.hxx>
#include <HatchGen_Domains.hxx>
#include <HatchGen_PointOnElement.hxx>
#include <HatchGen_PointOnHatching.hxx>
#include <IntRes2d_IntersectionPoint.hxx>
#include <IntRes2d_IntersectionSegment.hxx>
#include <IntRes2d_Transition.hxx>
#include <Precision.hxx>
#include <TopAbs.hxx>
#include <TopTrans_CurveTransition.hxx>

#define RAISE_IF_NOSUCHOBJECT 0
#define TRACE_HATCHER 0

//=======================================================================
//=======================================================================
//  Category : General use.
//=======================================================================
//=======================================================================

//=======================================================================
// Function : HatchGen_Hatcher
// Purpose  : Constructor.
//=======================================================================

HatchGen_Hatcher::HatchGen_Hatcher (const TheIntersector&  Intersector,
				    const Standard_Real    Confusion2d,
				    const Standard_Real    Confusion3d,
				    const Standard_Boolean KeepPnt,
				    const Standard_Boolean KeepSeg) :
       myIntersector  (Intersector) ,
       myConfusion2d  (Confusion2d) ,
       myConfusion3d  (Confusion3d) ,
       myKeepPoints   (KeepPnt) ,
       myKeepSegments (KeepSeg) ,
       myNbElements   (0) ,
       myNbHatchings  (0) 
{
}

//=======================================================================
// Function : Intersector
// Purpose  : Sets the associated intersector.
//=======================================================================

void HatchGen_Hatcher::Intersector (const TheIntersector& Intersector)
{
  myIntersector = Intersector ;
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
    if (myHatchings.IsBound (IndH)) {
      HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
      Hatching.ClrPoints() ;
    }
  }
}


//=======================================================================
// Function : Confusion2d
// Purpose  : Sets the 2dconfusion tolerance.
//=======================================================================

void HatchGen_Hatcher::Confusion2d (const Standard_Real Confusion)
{
  myConfusion2d = Confusion ;
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
    if (myHatchings.IsBound (IndH)) {
      HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
      Hatching.ClrPoints() ;
    }
  }
}


//=======================================================================
// Function : Confusion3d
// Purpose  : Sets the 3d confusion tolerance.
//=======================================================================

void HatchGen_Hatcher::Confusion3d (const Standard_Real Confusion)
{
  myConfusion3d = Confusion ;
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
    if (myHatchings.IsBound (IndH)) {
      HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
      Hatching.ClrPoints() ;
    }
  }
}

//=======================================================================
// Function : KeepPoints
// Purpose  : Sets the above flag.
//=======================================================================

void HatchGen_Hatcher::KeepPoints (const Standard_Boolean Keep)
{
  myKeepPoints = Keep ;
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
    if (myHatchings.IsBound (IndH)) {
      HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
      Hatching.ClrDomains() ;
    }
  }
}


//=======================================================================
// Function : KeepSegments
// Purpose  : Sets the above flag.
//=======================================================================

void HatchGen_Hatcher::KeepSegments (const Standard_Boolean Keep)
{
  myKeepSegments = Keep ;
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
    if (myHatchings.IsBound (IndH)) {
      HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
      Hatching.ClrDomains() ;
    }
  }
}



//=======================================================================
//=======================================================================
//  Category : Element.
//=======================================================================
//=======================================================================


//=======================================================================
// Function : AddElement
// Purpose  : Adds an element to the Hatcher and returns its index.
//=======================================================================

Standard_Integer HatchGen_Hatcher::AddElement (const TheCurveE& Curve,
					       const TopAbs_Orientation Orientation)
{
  Standard_Integer IndE ;
  for (IndE = 1 ; IndE <= myNbElements && myElements.IsBound(IndE) ; IndE++) ;
  if (IndE > myNbElements) {
    myNbElements++ ;
    IndE = myNbElements ;
  }
  HatchGen_Element Element (Curve, Orientation) ;
  myElements.Bind (IndE, Element) ;
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings; IndH++) {
    if (myHatchings.IsBound(IndH)) {
      HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
      Hatching.ClrPoints () ;
    }
  }
  return IndE ;
}

//=======================================================================
// Function : RemElement
// Purpose  : Removes the IndE-th element from the hatcher.
//=======================================================================

void HatchGen_Hatcher::RemElement (const Standard_Integer IndE)
{
#if RAISE_IF_NOSUCHOBJECT
  Standard_NoSuchObject_Raise_if (!myElements.IsBound (IndE), "") ;
#endif
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
    if (myHatchings.IsBound (IndH)) {
      HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
      Standard_Boolean DomainsToClear = Standard_False ;
      for (Standard_Integer IPntH = Hatching.NbPoints() ; IPntH > 0 ; IPntH--) {
	HatchGen_PointOnHatching PntH = Hatching.ChangePoint (IPntH) ;
	for (Standard_Integer IPntE = PntH.NbPoints() ; IPntE > 0 ; IPntE--) {
	  if (PntH.Point(IPntE).Index() == IndE) {
	    PntH.RemPoint (IPntE) ;
	    DomainsToClear = Standard_True ;
	  }
	}
	if (PntH.NbPoints() == 0) Hatching.RemPoint (IPntH) ;
      }
      if (DomainsToClear) Hatching.ClrDomains() ;
    }
  }
  myElements.UnBind (IndE) ;
  if (IndE == myNbElements) myNbElements-- ;
}

//=======================================================================
// Function : ClrElements
// Purpose  : Removes all the elements from the hatcher.
//=======================================================================

void HatchGen_Hatcher::ClrElements ()
{
  if (myNbElements != 0) {
    if (myNbHatchings != 0) {
      for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
	if (myHatchings.IsBound(IndH)) {
	  HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
	  Hatching.ClrPoints() ;
	}
      }
    }
    myElements.Clear() ;
    myNbElements = 0 ;
  }
}

//=======================================================================
//=======================================================================
//  Category : Hatching.
//=======================================================================
//=======================================================================


//=======================================================================
// Function : AddHatching
// Purpose  : Adds a hatching to the hatcher and returns its index.
//=======================================================================

Standard_Integer HatchGen_Hatcher::AddHatching (const TheCurveH& Curve)
{
  Standard_Integer IndH ;
  for (IndH = 1 ; IndH <= myNbHatchings && myHatchings.IsBound(IndH) ; IndH++) ;
  if (IndH > myNbHatchings) {
    myNbHatchings++ ;
    IndH = myNbHatchings ;
  }
  HatchGen_Hatching Hatching (Curve) ;
  myHatchings.Bind (IndH, Hatching) ;
  return IndH ;
}

//=======================================================================
// Function : RemHatching
// Purpose  : Removes the IndH-th hatching from the hatcher.
//=======================================================================

void HatchGen_Hatcher::RemHatching (const Standard_Integer IndH)
{
#if RAISE_IF_NOSUCHOBJECT
  Standard_NoSuchObject_Raise_if (!myHatchings.IsBound (IndH), "") ;
#endif
  HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
  Hatching.ClrPoints() ;
  myHatchings.UnBind (IndH) ;
  if (IndH == myNbHatchings) myNbHatchings-- ;
}
  
//=======================================================================
// Function : ClrHatchings
// Purpose  : Removes all the hatchings from the hatcher.
//=======================================================================

void HatchGen_Hatcher::ClrHatchings ()
{
  if (myNbHatchings != 0) {
    for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
      if (myHatchings.IsBound(IndH)) {
	HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
	Hatching.ClrPoints() ;
      }
    }
    myHatchings.Clear() ;
    myNbHatchings = 0 ;
  }
}



//=======================================================================
//=======================================================================
//  Category : Computation - Trimming
//=======================================================================
//=======================================================================

//=======================================================================
// Function : Trim
// Purpose  : Trims all the hatchings of the hatcher by all the elements
//            of the hatcher.
//=======================================================================

void HatchGen_Hatcher::Trim ()
{
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++)
    if (myHatchings.IsBound (IndH)) 
      Trim (IndH) ;
}

//=======================================================================
// Function : Trim
// Purpose  : Adds a hatching to the hatcher and trims it by the elements
//            already given and returns its index.
//=======================================================================

Standard_Integer HatchGen_Hatcher::Trim (const TheCurveH& Curve)
{
  Standard_Integer IndH = AddHatching (Curve) ;
  Trim (IndH) ;
  return IndH ;
}

//=======================================================================
// Function : Trim
// Purpose  : Trims the IndH-th hatching by the elements already given.
//=======================================================================

void HatchGen_Hatcher::Trim (const Standard_Integer IndH)
{
#if RAISE_IF_NOSUCHOBJECT
  Standard_NoSuchObject_Raise_if (!myHatchings.IsBound (IndH), "") ;
#endif

  HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;

  Hatching.ClrPoints() ;

  Standard_Boolean OK, AllOK ;

  AllOK = Standard_True ;
  for (Standard_Integer IndE = 1 ; IndE <= myNbElements ; IndE++) {
    if (myElements.IsBound (IndE)) {
      OK = Trim (IndH, IndE) ;
      AllOK = AllOK && OK ;
    }
  }
  Hatching.TrimDone (Standard_True) ;
  Hatching.TrimFailed (!AllOK) ;

  if (AllOK) {
    for (Standard_Integer IPnt = 1 ; IPnt <= Hatching.NbPoints() ; IPnt++) {
      HatchGen_PointOnHatching& PntH = Hatching.ChangePoint(IPnt) ;
      OK = GlobalTransition (PntH) ;
      AllOK = AllOK && OK ;
    }
    Hatching.Status (AllOK ? HatchGen_NoProblem : HatchGen_TransitionFailure) ;
  }
}

#if TRACE_HATCHER

//=======================================================================
// Function : IntersectionPointDump
// Purpose  : Dump of the intersection point.
//=======================================================================

static void IntersectionPointDump (const IntRes2d_IntersectionPoint& Pnt,
				   const Standard_Integer Index)
{
  Standard_Integer SavedPrecision = cout.precision() ;
  cout.precision (15) ;
  cout << "----- IntRes2d:: Point # " << setw(3) << Index << " ---------------" << endl ;
  cout << "-- U: "<<Pnt.Value().X()<<"    V: "<<Pnt.Value().Y()<<endl;
  cout << "-- Parameter on first   : " << Pnt.ParamOnFirst()  << endl ;
  cout << "-- Position  on first   : " ;
  switch (Pnt.TransitionOfFirst().PositionOnCurve()) {
      case IntRes2d_Head   : cout << "HEAD"   ; break ;
      case IntRes2d_Middle : cout << "MIDDLE" ; break ;
      case IntRes2d_End    : cout << "END"    ; break ;
  }
  cout << endl ;
  cout << "-- IntRes2d:: Transition on first  : " ;
  switch (Pnt.TransitionOfFirst().TransitionType()) {
      case IntRes2d_In        : cout << "IN"        ; break ;
      case IntRes2d_Out       : cout << "OUT"       ; break ;
      case IntRes2d_Touch     : cout << "TOUCH"     ; break ;
      case IntRes2d_Undecided : cout << "UNDECIDED" ; break ;
  }
  cout << endl ;
  if (Pnt.TransitionOfFirst().TransitionType() == IntRes2d_Touch) {
    cout << "-- IntRes2d:: Situation on first   : " ;
    switch (Pnt.TransitionOfFirst().Situation()) {
	case IntRes2d_Inside  : cout << "INSIDE"  ; break ;
	case IntRes2d_Outside : cout << "OUTSIDE" ; break ;
	case IntRes2d_Unknown : cout << "UNKNOWN" ; break ;
    }
    cout << endl ;
  }
  cout << "--------------------------------------------" << endl ;
  cout << "-- Parameter on second  : " << Pnt.ParamOnSecond() << endl ;
  cout << "-- Position  on second  : " ;
  switch (Pnt.TransitionOfSecond().PositionOnCurve()) {
      case IntRes2d_Head   : cout << "HEAD"   ; break ;
      case IntRes2d_Middle : cout << "MIDDLE" ; break ;
      case IntRes2d_End    : cout << "END"    ; break ;
  }
  cout << endl ;
  cout << "-- IntRes2d:: Transition on second : " ;
  switch (Pnt.TransitionOfSecond().TransitionType()) {
      case IntRes2d_In        : cout << "IN"        ; break ;
      case IntRes2d_Out       : cout << "OUT"       ; break ;
      case IntRes2d_Touch     : cout << "TOUCH"     ; break ;
      case IntRes2d_Undecided : cout << "UNDECIDED" ; break ;
  }
  cout << endl ;
  if (Pnt.TransitionOfSecond().TransitionType() == IntRes2d_Touch) {
    cout << "-- IntRes2d:: Situation on second  : " ;
    switch (Pnt.TransitionOfSecond().Situation()) {
	case IntRes2d_Inside  : cout << "INSIDE"  ; break ;
	case IntRes2d_Outside : cout << "OUTSIDE" ; break ;
	case IntRes2d_Unknown : cout << "UNKNOWN" ; break ;
    }
    cout << endl ;
  }
  cout << "--------------------------------------------" << endl ;
  cout.precision (SavedPrecision) ;
}

#endif

//=======================================================================
// Function : Trim
// Purpose  : Trims the IndH-th hatching of the hatcher by the IndE th
//            element.
//=======================================================================

Standard_Boolean HatchGen_Hatcher::Trim (const Standard_Integer IndH,
					 const Standard_Integer IndE)
{
#if RAISE_IF_NOSUCHOBJECT
  Standard_NoSuchObject_Raise_if (!myHatchings.IsBound (IndH), "") ;
  Standard_NoSuchObject_Raise_if (!myElements.IsBound (IndE), "") ;
#endif

  HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
  HatchGen_Element& Element   = myElements.ChangeFind  (IndE) ;

  TheCurveH hatching = Hatching.ChangeCurve() ;
  TheCurveE element  = Element.ChangeCurve() ;

  myIntersector.Intersect (hatching, element) ;
  
#if TRACE_HATCHER
  cout << "--- Hatcher - Trim:: Hatching # " << setw(3);
  cout << IndH << " with Element # " << setw(3);
  cout << IndE << " ----------" << endl ;
#endif    
  
  if (!myIntersector.IsDone())  { 
    cout<<" Intersector -> Done = False ";
    return Standard_False ;
  }
  
#if TRACE_HATCHER
  if (myIntersector.IsEmpty()) {
    cout << "No intersection" << endl ;
    cout << "--------------------------------------------------------------------" << endl ;
  }
#endif    
  
  if (myIntersector.IsEmpty()) return Standard_True ;
  
#if TRACE_HATCHER
  cout << "Number of intersection points   : " << setw(3) << (myIntersector.NbPoints())   << endl ;
  cout << "Number of intersection segments : " << setw(3) << (myIntersector.NbSegments()) << endl ;
#endif    
  
  //-----------------------------------------------------------------------
  // Traitement des points d intersection.
  //-----------------------------------------------------------------------
  
  for (Standard_Integer IPntI = 1 ; IPntI <= myIntersector.NbPoints() ; IPntI++) {
    const IntRes2d_IntersectionPoint& PntI = myIntersector.Point (IPntI) ;
    
#if TRACE_HATCHER
    IntersectionPointDump (PntI, IPntI) ;
#endif
    
    HatchGen_PointOnElement PntE (PntI) ;
    PntE.SetIndex (IndE) ;
    
    HatchGen_PointOnHatching PntH (PntI) ;
    PntH.SetIndex (IndH) ;
    PntH.AddPoint (PntE, myConfusion2d) ;
    
    Hatching.AddPoint (PntH, myConfusion2d) ;
  }
  
  //-----------------------------------------------------------------------
  // Traitement des segments d intersection.
  //-----------------------------------------------------------------------
  
  for (Standard_Integer ISeg = 1 ; ISeg <= myIntersector.NbSegments() ; ISeg++) {
    
    const IntRes2d_IntersectionSegment& Seg = myIntersector.Segment (ISeg) ;
    
#if TRACE_HATCHER
    cout << "----- Segment # " << setw(3) << ISeg << " -------------" << endl ;
#endif
    
    Standard_Boolean FirstPoint = Seg.HasFirstPoint() ;
    Standard_Boolean LastPoint  = Seg.HasLastPoint() ;
    
    //-----------------------------------------------------------------------
    // Les deux points peuvent etre confondus.
    //-----------------------------------------------------------------------
    
    if (FirstPoint && LastPoint) {
      
      const IntRes2d_IntersectionPoint& Pnt1 = Seg.FirstPoint() ;
      const IntRes2d_IntersectionPoint& Pnt2 = Seg.LastPoint()  ;
      
      const IntRes2d_Transition& TrsPnt1H = Pnt1.TransitionOfFirst() ;
      const IntRes2d_Transition& TrsPnt1E = Pnt1.TransitionOfSecond() ;
      const IntRes2d_Transition& TrsPnt2H = Pnt2.TransitionOfFirst() ;
      const IntRes2d_Transition& TrsPnt2E = Pnt2.TransitionOfSecond() ;
      
      IntRes2d_TypeTrans TypePnt1H = TrsPnt1H.TransitionType() ;
      IntRes2d_TypeTrans TypePnt1E = TrsPnt1E.TransitionType() ;
      IntRes2d_TypeTrans TypePnt2H = TrsPnt2H.TransitionType() ;
      IntRes2d_TypeTrans TypePnt2E = TrsPnt2E.TransitionType() ;
      
      //-----------------------------------------------------------------------
      // Les deux points peuvent etre confondus au regard de la precision du
      // `hatcher'.
      //-----------------------------------------------------------------------
      
      Standard_Boolean Conf2d = Abs (Pnt1.ParamOnFirst() - Pnt2.ParamOnFirst()) <= myConfusion2d ;

      //-----------------------------------------------------------------------
      // Les deux points peuvent etre `confondus' au regard des intersections.
      //-----------------------------------------------------------------------

      Standard_Boolean Conf3d = Standard_False ;

      if (!Conf2d) {
	Conf3d = Standard_True ;
	if (Conf3d) Conf3d = TypePnt1H != IntRes2d_Touch && TypePnt1H != IntRes2d_Undecided ;
	if (Conf3d) Conf3d = TypePnt1E != IntRes2d_Touch && TypePnt1E != IntRes2d_Undecided ;
	if (Conf3d) Conf3d = TypePnt2H != IntRes2d_Touch && TypePnt2H != IntRes2d_Undecided ;
	if (Conf3d) Conf3d = TypePnt2E != IntRes2d_Touch && TypePnt2E != IntRes2d_Undecided ;
	if (Conf3d) Conf3d = TypePnt1H == TypePnt2H      && TypePnt1E == TypePnt2E ;
	if (Conf3d) Conf3d = Pnt1.Value().Distance (Pnt2.Value()) <= myConfusion3d ;
      }

      if (Conf2d || Conf3d) {
	
	HatchGen_PointOnElement PntE ;
	PntE.SetIndex (IndE) ;
	PntE.SetParameter ((Pnt1.ParamOnSecond() + Pnt2.ParamOnSecond()) / 2.) ;
	switch (TrsPnt1E.PositionOnCurve()) {
	  case IntRes2d_Head: { 
	    PntE.SetPosition(TopAbs_FORWARD) ;
	    break ;
	  }
	  case IntRes2d_Middle: {
	    switch (TrsPnt2E.PositionOnCurve()) {
	       case IntRes2d_Head: {
		 PntE.SetPosition (TopAbs_FORWARD);
		 break;
	       }
	       case IntRes2d_Middle: { 
		 PntE.SetPosition (TopAbs_INTERNAL) ;
		 break ;
	       }
	       case IntRes2d_End: {
		 PntE.SetPosition (TopAbs_REVERSED) ;
		 break ;
	       }
	       default: {
		 break;
	       }
	    }
	    break;
	  }
	  case IntRes2d_End:  { 
	    PntE.SetPosition(TopAbs_REVERSED) ;
	    break ;
	  }
          default: {
	    break;
	  }
	}
	PntE.SetIntersectionType 
	  ((PntE.Position() == TopAbs_INTERNAL) ? HatchGen_TRUE : HatchGen_TOUCH) ;
	PntE.SetStateBefore ((TypePnt1H == IntRes2d_In) ? TopAbs_OUT : TopAbs_IN) ;
	PntE.SetStateAfter  ((TypePnt2H == IntRes2d_In) ? TopAbs_OUT : TopAbs_IN) ;
	
	HatchGen_PointOnHatching PntH ;
	PntH.SetIndex (IndH) ;
	PntH.SetParameter ((Pnt1.ParamOnFirst() + Pnt2.ParamOnFirst()) / 2.) ;
	switch (TrsPnt1H.PositionOnCurve()) {
	   case IntRes2d_Head: {
	     PntH.SetPosition (TopAbs_FORWARD) ;
	     break ;
	   }
	   case IntRes2d_Middle: {
	     switch (TrsPnt2H.PositionOnCurve()) {
	        case IntRes2d_Head: {
		  PntH.SetPosition (TopAbs_FORWARD) ;
		  break ;
		}
		case IntRes2d_Middle: {
		  PntH.SetPosition (TopAbs_INTERNAL) ;
		  break ;
		}
		case IntRes2d_End: {
		  PntH.SetPosition (TopAbs_REVERSED) ;
		  break ;
		}
		default : {
		  break ;
		}
	     }
	     break ;
	   }
	   case IntRes2d_End: {
	     PntH.SetPosition (TopAbs_REVERSED) ;
	     break ;
	   }
	   default : {
	     break ;
	   }
	}

	PntH.AddPoint (PntE, myConfusion2d) ;
	Hatching.AddPoint (PntH, myConfusion2d) ;
	
#if TRACE_HATCHER
	IntersectionPointDump (Pnt1, 1) ;
	IntersectionPointDump (Pnt2, 2) ;
	cout << "THESE TWO POINTS ARE "
	     << (Conf2d ? "2D" : "3D")
	     << " CONFUSED INTO THE FOLLOWING" << endl ;
	PntH.Dump() ;
#endif
	continue ;
	
      }
      
      //-----------------------------------------------------------------------
      // Traitement du premier point du segment.
      //-----------------------------------------------------------------------
      
      if (FirstPoint) {
	
	const IntRes2d_IntersectionPoint& PntI = Seg.FirstPoint() ;
	
#if TRACE_HATCHER
	IntersectionPointDump (PntI, 1) ;
#endif
	
	HatchGen_PointOnElement PntE (PntI) ;
	PntE.SetIndex (IndE) ;
	PntE.SetSegmentBeginning (Standard_True)  ;
	PntE.SetSegmentEnd       (Standard_False) ;
	
	HatchGen_PointOnHatching PntH (PntI) ;
	PntH.SetIndex (IndH) ;
	PntH.AddPoint (PntE, myConfusion2d) ;
	
	Hatching.AddPoint (PntH, myConfusion2d) ;
	
#if TRACE_HATCHER
      } 
      else {
	cout << "----- Has no first point --------" << endl ;
	cout << "---------------------------------" << endl ;
#endif
	
      }
      
      //-----------------------------------------------------------------------
      // Traitement du deuxieme point du segment.
      //-----------------------------------------------------------------------
      
      if (LastPoint) {
	
	const IntRes2d_IntersectionPoint& PntI = Seg.LastPoint() ;
	
#if TRACE_HATCHER
	IntersectionPointDump (PntI, 2) ;
#endif
	
	HatchGen_PointOnElement PntE (PntI) ;
	PntE.SetIndex (IndE) ;
	PntE.SetSegmentBeginning (Standard_False) ;
	PntE.SetSegmentEnd       (Standard_True)  ;
	
	HatchGen_PointOnHatching PntH (PntI) ;
	PntH.SetIndex (IndH) ;
	PntH.AddPoint (PntE, myConfusion2d) ;
	
	Hatching.AddPoint (PntH, myConfusion2d) ;
	
#if TRACE_HATCHER
      } 
      else {
	cout << "----- Has no last point ---------" << endl ;
	cout << "---------------------------------" << endl ;
#endif
      }
    }
#if TRACE_HATCHER
    cout << "--------------------------------------------------------------------" << endl ;
#endif    
    
  }
  return Standard_True;
}
//=======================================================================
//=======================================================================
//  Category : Computation - Domains
//=======================================================================
//=======================================================================

//=======================================================================
// Function : GlobalTransition
// Purpose  : Returns the before and after states of the complex
//            transition of the IndP-th intersection point of the
//            IndH-th hatching.
//=======================================================================

Standard_Boolean HatchGen_Hatcher::GlobalTransition (HatchGen_PointOnHatching& Point)
{
  TopAbs_State StateBefore = TopAbs_UNKNOWN ;
  TopAbs_State StateAfter  = TopAbs_UNKNOWN ;
  Standard_Boolean SegmentBegin = Standard_False ;
  Standard_Boolean SegmentEnd   = Standard_False ;

  gp_Dir2d Tangente2d, Normale2d ;
  gp_Dir   Tangente,   Normale ;
  Standard_Real Courbure ;

  const TheCurveH& CurveH = HatchingCurve (Point.Index()) ;

  myIntersector.LocalGeometry(CurveH.Curve(),
			      Point.Parameter(),
			      Tangente2d,
			      Normale2d,
			      Courbure);

  Tangente.SetCoord (Tangente2d.X(), Tangente2d.Y(), 0.0) ;
  if (Courbure < Precision::Confusion()) {
    Normale.SetCoord (-Tangente2d.Y(), Tangente2d.X(), 0.0) ;
  } else {
    Normale.SetCoord (Normale2d.X(), Normale2d.Y(), 0.0) ;
  }

  TopTrans_CurveTransition ComplexTransition ;
  ComplexTransition.Reset (Tangente, Normale, Courbure) ;

#if TRACE_HATCHER
  printf("\n ----- Global Transition Complex Transition Reset \n");
  printf("\n       P:%+10.5g  Tg2d:%+10.5g , %+10.5g  N2d:%+10.5g , %+10.5g  Crv:%+10.5g\n\n",
	 Point.Parameter(),Tangente.X(),Tangente.Y(),Normale.X(),Normale.Y(),Courbure);
#endif
  for (Standard_Integer IPntE = 1 ; IPntE <= Point.NbPoints() ; IPntE++) {

    const HatchGen_PointOnElement& PntE = Point.Point (IPntE) ;
    
    SegmentBegin = SegmentBegin || PntE.SegmentBeginning() ;
    SegmentEnd   = SegmentEnd   || PntE.SegmentEnd() ;
    
    const HatchGen_Element& Element = myElements.Find (PntE.Index()) ;
    const TheCurveE& CurveE = Element.Curve() ;
    
    TopAbs_Orientation ElementOrientation = Element.Orientation() ;
    Standard_Boolean ToReverse = (ElementOrientation == TopAbs_REVERSED);
    Standard_Real Param ;
    switch (PntE.Position()) {
	case TopAbs_FORWARD  : {
	  Param = ToReverse ? CurveE.LastParameter() : CurveE.FirstParameter() ;
	  break ;
	}
	case TopAbs_INTERNAL : {
	  Param = PntE.Parameter() ;
	  break ;
	}
	case TopAbs_REVERSED : {
	  Param = ToReverse ? CurveE.FirstParameter() : CurveE.LastParameter() ;
	  break ;
	}
#ifndef DEB
	default:
	  break;
#endif
    }
    
//-- 
#if TRACE_HATCHER
    printf("\n ******** ToReverse: %d Param : %g   ANParam : %g \n",ToReverse,Param,PntE.Parameter());
#endif
    Param = PntE.Parameter();


    myIntersector.LocalGeometry(CurveE.Curve(),
				Param,
				Tangente2d,
				Normale2d,
				Courbure);

    
//-----------------------------------------------------------------------
// Calcul de la transition locale. On suppose les relations suivantes :
//  - Si l orientation de l element est INTERNAL ==> INTERNAL
//  - Si l orientation de l element est EXTERNAL ==> EXTERNAL
//  - Si tangence, on a IN-IN  ou OUT-OUT ==> INTERNAL/EXTERNAL
//  - Sinon,       on a IN-OUT ou OUT-IN  ==> REVERSED/FORWARD 
// Les deux dernieres conditions avec l element vu en FORWARD.    
//-----------------------------------------------------------------------
#ifndef DEB
    TopAbs_Orientation LocalTransition = TopAbs_EXTERNAL;
#else
    TopAbs_Orientation LocalTransition;
#endif
    if        (ElementOrientation == TopAbs_INTERNAL) {
      LocalTransition = TopAbs_INTERNAL ;
    } else if (ElementOrientation == TopAbs_EXTERNAL) {
      LocalTransition = TopAbs_EXTERNAL ;
    } else if (PntE.IntersectionType()        == HatchGen_TANGENT) {
      if (PntE.Position() == TopAbs_INTERNAL) {
	switch (PntE.StateBefore()) {
	  case TopAbs_IN  : LocalTransition = ToReverse ? TopAbs_EXTERNAL : TopAbs_INTERNAL ; break ;
	  case TopAbs_OUT : LocalTransition = ToReverse ? TopAbs_INTERNAL : TopAbs_EXTERNAL ; break ;
#ifndef DEB
	  default:
	    break;
#endif
      }
    } else {
	switch (PntE.StateBefore()) {
	  case TopAbs_IN  : LocalTransition = ToReverse ? TopAbs_FORWARD  : TopAbs_REVERSED ; break ;
	  case TopAbs_OUT : LocalTransition = ToReverse ? TopAbs_REVERSED : TopAbs_FORWARD  ; break ;
#ifndef DEB
	  default:
	    break;
#endif
	  }
      }
//  Modified by Sergey KHROMOV - Fri Jan  5 12:03:20 2001 Begin
    } else {
      switch (PntE.StateBefore()) {
	  case TopAbs_IN  : LocalTransition = ToReverse ? TopAbs_FORWARD  : TopAbs_REVERSED ; break ;
	  case TopAbs_OUT : LocalTransition = ToReverse ? TopAbs_REVERSED : TopAbs_FORWARD  ; break ;
#ifndef DEB
	  default:
	    break;
#endif
      }
    }
//  Modified by Sergey KHROMOV - Fri Jan  5 12:03:24 2001 End

//-----------------------------------------------------------------------
// Orientation de la tangente au point d interference.
//-----------------------------------------------------------------------
#ifndef DEB
    TopAbs_Orientation TangenteOrientation = TopAbs_FORWARD;
#else
    TopAbs_Orientation TangenteOrientation ;
#endif
    switch (PntE.Position()) {
	case TopAbs_FORWARD  : TangenteOrientation = ToReverse ? TopAbs_REVERSED : TopAbs_FORWARD  ; break ;
	case TopAbs_INTERNAL : TangenteOrientation = TopAbs_INTERNAL ; break ;
	case TopAbs_REVERSED : TangenteOrientation = ToReverse ? TopAbs_FORWARD  : TopAbs_REVERSED ; break ;
#ifndef DEB
	default:
	  break;
#endif
    }

//-----------------------------------------------------------------------
// Proprietes geometriques.
//-----------------------------------------------------------------------

    if (ToReverse) {
      Tangente.SetCoord (-Tangente2d.X(), -Tangente2d.Y(), 0.0) ;
    } else {
      Tangente.SetCoord ( Tangente2d.X(),  Tangente2d.Y(), 0.0) ;
    }
    Normale.SetCoord ( Normale2d.X(),  Normale2d.Y(), 0.0) ;
//  Modified by Sergey KHROMOV - Fri Jan  5 12:04:38 2001 Begin
//     if (Courbure < Precision::Confusion()) {
//       if (ToReverse) {
//         Normale.SetCoord ( Tangente2d.Y(), -Tangente2d.X(), 0.0) ;
//       } else {
// 	Normale.SetCoord (-Tangente2d.Y(),  Tangente2d.X(), 0.0) ;
//       }
//     } else {
//       if (ToReverse) {
// 	Normale.SetCoord (-Normale2d.X(), -Normale2d.Y(), 0.0) ;
//       } else {
// 	Normale.SetCoord ( Normale2d.X(),  Normale2d.Y(), 0.0) ;
//       }
//     }
//  Modified by Sergey KHROMOV - Fri Jan  5 12:04:41 2001 End
#if TRACE_HATCHER
    printf("\n \n----- Global Transition Complex Transition Compare" );
    char *str1 = " ??? ";
    char *str2 = " ??? ";
    if(LocalTransition==TopAbs_INTERNAL) str1=" INTERNAL ";
    if(LocalTransition==TopAbs_REVERSED) str1=" REVERSED ";
    if(LocalTransition==TopAbs_FORWARD)  str1=" FORWARD  ";

    if(TangenteOrientation==TopAbs_INTERNAL) str2=" INTERNAL ";
    if(TangenteOrientation==TopAbs_REVERSED) str2=" REVERSED ";
    if(TangenteOrientation==TopAbs_FORWARD)  str2=" FORWARD  ";

    printf("\n       P:%+10.5g  Tg2d:%+10.5g , %+10.5g  N2d:%+10.5g , %+10.5g  Crv:%+10.5g LocalTr:%s TangOrie:%s\n",
	   Param,Tangente.X(),Tangente.Y(),Normale.X(),Normale.Y(),Courbure,str1,str2);
#endif

#if 1 
    ComplexTransition.Compare (Precision::Angular(),
			       Tangente, Normale, Courbure,
			       LocalTransition, TangenteOrientation) ;
#else 
    ComplexTransition.Compare (Precision::Angular(),
			       Tangente, Normale, Courbure,
			       LocalTransition, TopAbs_INTERNAL) ;

#endif
  }

  switch (ComplexTransition.StateBefore()) {
      case TopAbs_IN      : StateBefore = TopAbs_IN  ; break ;
      case TopAbs_OUT     : StateBefore = TopAbs_OUT ; break ;
      case TopAbs_ON      : return Standard_False ;
      case TopAbs_UNKNOWN : return Standard_False ;
  }
  switch (ComplexTransition.StateAfter()) {
      case TopAbs_IN      : StateAfter = TopAbs_IN  ; break ;
      case TopAbs_OUT     : StateAfter = TopAbs_OUT ; break ;
      case TopAbs_ON      : return Standard_False ;
      case TopAbs_UNKNOWN : return Standard_False ;
  }


#if TRACE_HATCHER
  printf("\n");
  printf("\n --> StateBef :"); if(StateBefore==TopAbs_IN) printf(" IN "); else printf(" OUT ");
  printf("\n --> StateAft :"); if(StateAfter==TopAbs_IN) printf(" IN "); else printf(" OUT ");
  printf("\n------   Fin GlobalTransition\n");
#endif
  
  Point.SetStateBefore      (StateBefore) ;
  Point.SetStateAfter       (StateAfter) ;
  Point.SetSegmentBeginning (SegmentBegin) ;
  Point.SetSegmentEnd       (SegmentEnd) ;
  return Standard_True ;
}

//=======================================================================
// Function : ComputeDomains
// Purpose  : Computes the domains of all the hatchings.
//=======================================================================

void HatchGen_Hatcher::ComputeDomains ()
{
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++)
    if (myHatchings.IsBound (IndH)) ComputeDomains (IndH) ;
}

//=======================================================================
// Function : ComputeDomains
// Purpose  : Computes the domains of the IndH-th hatching.
//=======================================================================

void HatchGen_Hatcher::ComputeDomains (const Standard_Integer IndH)
{
#if RAISE_IF_NOSUCHOBJECT
  Standard_NoSuchObject_Raise_if (!myHatchings.IsBound (IndH), "") ;
#endif
  
  HatchGen_Hatching& Hatching = myHatchings.ChangeFind (IndH) ;
  Hatching.ClrDomains() ;

  Hatching.IsDone (Standard_False) ;

  if (!Hatching.TrimDone()) Trim (IndH) ;
  if (Hatching.Status() != HatchGen_NoProblem) return ;
  
  Standard_Boolean Points   = myKeepPoints ;
  Standard_Boolean Segments = myKeepSegments ;
  Standard_Integer ISav = 0 ;
  Standard_Boolean SavPnt  = Standard_False ;
  Standard_Integer NbOpenedSegments = 0 ;
  Standard_Integer NbPnt = Hatching.NbPoints() ;
  Standard_Integer IPnt =1;

  if (NbPnt == 0) {
    //-- cout << "The hatching # " << setw(3) << IndH << " has to be classified" << endl ;
    HatchGen_Classifier Classifier(myElements,Hatching.ClassificationPoint(),0.0000001); 
    if(Classifier.State() == TopAbs_IN) { 
      HatchGen_Domain domain ;
      Hatching.AddDomain (domain) ;
    }
    Hatching.IsDone (Standard_True) ;
    return ;
  }
  
//for (Standard_Integer IPnt = 1 ; IPnt <= NbPnt ; IPnt++) {
  for (IPnt = 1 ; IPnt <= NbPnt ; IPnt++) {
    Standard_Boolean NoDomain   = Hatching.NbDomains() == 0 ; 
    Standard_Boolean FirstPoint = IPnt ==     1 ;
    Standard_Boolean LastPoint  = IPnt == NbPnt ;

    const HatchGen_PointOnHatching& CurPnt = Hatching.Point (IPnt) ;

#if TRACE_HATCHER
    cout << "===== ComputeDomains:: Hatching # " << setw(3) << IndH << " =====" << endl ;
    CurPnt.Dump (IPnt) ;
    cout << "==========================================" << endl ;
#endif
    
    
//-----------------------------------------------------------------------
// Calcul des domaines.
//-----------------------------------------------------------------------

    TopAbs_State     StateBefore  = CurPnt.StateBefore() ;
    TopAbs_State     StateAfter   = CurPnt.StateAfter() ;
    Standard_Boolean SegmentBegin = CurPnt.SegmentBeginning() ;
    Standard_Boolean SegmentEnd   = CurPnt.SegmentEnd() ;

    HatchGen_Domain domain ;

//-----------------------------------------------------------------------
// Initialisations dues au premier point.
//-----------------------------------------------------------------------

    if (FirstPoint) {
      SavPnt  = Standard_False ;
      ISav = 0 ;
      NbOpenedSegments = 0 ;
      if (SegmentEnd && SegmentBegin) {
	if (StateAfter  == TopAbs_UNKNOWN) StateAfter  = TopAbs_IN ;
	if (StateBefore == TopAbs_UNKNOWN) StateBefore = TopAbs_IN ;
	if (Segments) {
	  SavPnt  = Standard_True ;
	  ISav = 0 ;
	}
      } else if (SegmentEnd) {
	if (StateAfter == TopAbs_UNKNOWN) StateAfter = TopAbs_IN ;
	if (Segments) {
	  SavPnt  = Standard_True ;
	  ISav = 0 ;
	}
      } else if (SegmentBegin) {
	if (StateBefore == TopAbs_UNKNOWN) StateBefore = TopAbs_IN ;
	if (StateBefore == TopAbs_IN) {
	  SavPnt  = Standard_True ;
	  ISav = 0 ;
	}
      } else {
	if (StateBefore == TopAbs_IN) {
	  SavPnt  = Standard_True ;
	  ISav = 0 ;
	}
      }
    }

//-----------------------------------------------------------------------
// Initialisations dues au dernier point.
//-----------------------------------------------------------------------

    if (LastPoint) {
      if (SegmentEnd && SegmentBegin) {
	if (StateAfter  == TopAbs_UNKNOWN) StateAfter  = TopAbs_IN ;
	if (StateBefore == TopAbs_UNKNOWN) StateBefore = TopAbs_IN ;
      } else if (SegmentEnd) {
	if (StateAfter  == TopAbs_UNKNOWN) StateAfter = TopAbs_IN ;
      } else if (SegmentBegin) {
	if (StateBefore == TopAbs_UNKNOWN) StateBefore = TopAbs_IN ;
      } else {
      }
    }
    
//-----------------------------------------------------------------------
// Cas general.
//-----------------------------------------------------------------------

    Standard_Boolean ToAppend = Standard_False ;

    if (SegmentEnd && SegmentBegin) {

      if (StateBefore != TopAbs_IN && StateAfter != TopAbs_IN) {
	Hatching.Status (HatchGen_IncompatibleStates) ;
	return ;
      }
      if (Points) {
	if (Segments) {
	  if (!SavPnt) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    return ;
	  }
	  if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	  domain.SetSecondPoint (CurPnt) ;
	  ToAppend = Standard_True ;
	  SavPnt = Standard_True ;
	  ISav = IPnt ;
	} else {
	  Standard_Boolean isININ = (StateBefore == TopAbs_IN && StateAfter == TopAbs_IN);
	  if (SavPnt && !isININ) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    return ;
	  }
	  domain.SetPoints (CurPnt, CurPnt) ;
	  ToAppend = Standard_True ;
	  SavPnt = Standard_False ;
	  ISav = 0 ;
	}
      }
	  
    } else if (SegmentEnd) {

      if (Segments) {
	if (StateAfter == TopAbs_OUT) {
	  if (!SavPnt) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    return ;
	  }
	  if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	  domain.SetSecondPoint (CurPnt) ;
	  ToAppend = Standard_True ;
	} else {
	  if (Points) {
	    if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	    domain.SetSecondPoint (CurPnt) ;
	    ToAppend = Standard_True ;
	    SavPnt = Standard_True ;
	    ISav = IPnt ;
	  }
	}
      } else {
	if (StateAfter == TopAbs_IN) {
	  SavPnt = Standard_True ;
	  ISav = IPnt ;
	}
      }
      NbOpenedSegments-- ;
      
    } else if (SegmentBegin) {

      if (Segments) {
	if (StateBefore == TopAbs_OUT) {
	  SavPnt = Standard_True ;
	  ISav = IPnt ;
	} else {
	  if (Points) {
	    if (!SavPnt) {
	      if(NoDomain) { 
		Hatching.Status (HatchGen_IncoherentParity) ;
	      }
	      else { 
		Hatching.IsDone(Standard_True);
	      }
	      
	      return ;
	    }
	    if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	    domain.SetSecondPoint (CurPnt) ;
	    ToAppend = Standard_True ;
	    SavPnt = Standard_True ;
	    ISav = IPnt ;
	  }
	}
      } else {
	if (StateBefore == TopAbs_IN) {
	  if (!SavPnt) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    
	    return ;
	  }
	  if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	  domain.SetSecondPoint (CurPnt) ;
	  ToAppend = Standard_True ;
//  Modified by Sergey KHROMOV - Fri Jan  5 12:05:30 2001
// 	  SavPnt = Standard_False ;
// 	  ISav = 0 ;
	  SavPnt = Standard_True ;
	  ISav = IPnt ;
//  Modified by Sergey KHROMOV - Fri Jan  5 12:05:31 2001
	}
      }
      NbOpenedSegments++ ;
      
    } else {
      //-- ???????????????????????????????????????????????????????????????????????????
      //-- Solution provisoire (lbr le 11 Aout 97 )
      //-- si On a 2 points dont des points OUT OUT ou IN IN qui delimitent une isos
      //-- on transforme les transitions 
      if (StateBefore == TopAbs_OUT && StateAfter == TopAbs_OUT) {
	if(NbPnt == 2) { 
	  if(FirstPoint) 
	    StateAfter  = TopAbs_IN; 
	  else
	    StateBefore = TopAbs_IN; 
	}
      }
       //-- ???????????????????????????????????????????????????????????????????????????
      if        (StateBefore == TopAbs_OUT && StateAfter == TopAbs_OUT) {

	if (SavPnt) {
	  if(NoDomain) { 
	    Hatching.Status (HatchGen_IncoherentParity) ;
	  }
	  else { 
	    Hatching.IsDone(Standard_True);
	  }
	  
	  return ;
	}
	if (Points) {
	  domain.SetPoints (CurPnt, CurPnt) ;
	  ToAppend = Standard_True ;
	  SavPnt = Standard_True ;
	  ISav = IPnt ;
	}

      } else if (StateBefore == TopAbs_OUT && StateAfter == TopAbs_IN ) {

	SavPnt = Standard_True ;
	ISav = IPnt ;

      } else if (StateBefore == TopAbs_IN  && StateAfter == TopAbs_OUT) {

	if (!SavPnt) {
	  if(NoDomain) { 
	    Hatching.Status (HatchGen_IncoherentParity) ;
	  }
	  else { 
	    Hatching.IsDone(Standard_True);
	  }
	  
	  return ;
	}
	if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	domain.SetSecondPoint (CurPnt) ;
	ToAppend = Standard_True ;
	SavPnt = Standard_False ;
	ISav = 0 ;

      } else if (StateBefore == TopAbs_IN  && StateAfter == TopAbs_IN ) {

	if (Points) {
	  if (NbOpenedSegments == 0) {
	    if (!SavPnt) {
	      if(NoDomain) { 
		Hatching.Status (HatchGen_IncoherentParity) ;
	      }
	      else { 
		Hatching.IsDone(Standard_True);
	      }
	      
	      return ;
	    }
	    if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	    domain.SetSecondPoint (CurPnt) ;
	    ToAppend = Standard_True ;
	    SavPnt = Standard_True ;
	    ISav = IPnt ;
	  } else {
	    if (Segments) {
	      if (!SavPnt) {
		if(NoDomain) { 
		  Hatching.Status (HatchGen_IncoherentParity) ;
		}
		else { 
		  Hatching.IsDone(Standard_True);
		}

		return ;
	      }
	      if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	      domain.SetSecondPoint (CurPnt) ;
	      ToAppend = Standard_True ;
	      SavPnt = Standard_True ;
	      ISav = IPnt ;
	    } else {
	      if (SavPnt) {
		if(NoDomain) { 
		  Hatching.Status (HatchGen_IncoherentParity) ;
		}
		else { 
		  Hatching.IsDone(Standard_True);
		}
		
		return ;
	      }
	      domain.SetPoints (CurPnt, CurPnt) ;
	      ToAppend = Standard_True ;
	      SavPnt = Standard_False ;
	      ISav = 0 ;
	    }
	  }
	}

      } else {

	Hatching.Status (HatchGen_IncompatibleStates) ;
	return ;

      }
	
    }

//-----------------------------------------------------------------------
// Ajout du domaine.
//-----------------------------------------------------------------------

    if (ToAppend) Hatching.AddDomain (domain) ;
    
//-----------------------------------------------------------------------
// Traitement lie au dernier point.
//-----------------------------------------------------------------------

    if (LastPoint) {
      
      domain.SetPoints () ;
      ToAppend = Standard_False ;
      
      if (SegmentEnd && SegmentBegin) {
	
	if (Segments) {
	  if (!SavPnt) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    
	    return ;
	  }
	  if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	  ToAppend = Standard_True ;
	}
	
      } else if (SegmentEnd) {

	if (StateAfter == TopAbs_IN) {
	  if (!SavPnt) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    
	    return ;
	  }
	  if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	  ToAppend = Standard_True ;
	}
	
      } else if (SegmentBegin) {
	
	if (Segments) {
	  if (!SavPnt) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    
	    return ;
	  }
	  if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	  ToAppend = Standard_True ;
	}

      } else {
	
	if (StateAfter == TopAbs_IN) {
	  if (!SavPnt) {
	    if(NoDomain) { 
	      Hatching.Status (HatchGen_IncoherentParity) ;
	    }
	    else { 
	      Hatching.IsDone(Standard_True);
	    }
	    
	    return ;
	  }
	  if (ISav != 0) domain.SetFirstPoint (Hatching.Point(ISav)) ;
	  ToAppend = Standard_True ;
	}

      }
      if (ToAppend) Hatching.AddDomain (domain) ;
    }
    
  }
  Hatching.IsDone(Standard_True) ;
}

//=======================================================================
//=======================================================================
//  Category : Results.
//=======================================================================
//=======================================================================


//=======================================================================
// Function : Domain
// Purpose  : Returns the IDom-th domain of the IndH-th hatching.
//=======================================================================

const HatchGen_Domain& HatchGen_Hatcher::Domain (const Standard_Integer IndH,
						 const Standard_Integer IDom) const
{
#if RAISE_IF_NOSUCHOBJECT
  Standard_NoSuchObject_Raise_if (!myHatchings.IsBound (IndH), "") ;
#endif
  const HatchGen_Hatching& Hatching = myHatchings.Find (IndH) ;
  StdFail_NotDone_Raise_if (!Hatching.IsDone(), "HatchGen_Hatcher::Domain") ;
#if RAISE_IF_NOSUCHOBJECT
  Standard_OutOfRange_Raise_if (IDom < 1 || IDom > Hatching.NbDomains(), "") ;
#endif
  const HatchGen_Domain& Domain = Hatching.Domain (IDom) ;
  return Domain ;
}

//=======================================================================
//=======================================================================
//  Category : Dump.
//=======================================================================
//=======================================================================

//=======================================================================
// Function : Dump
// Purpose  : Dumps the hatcher.
//=======================================================================

void HatchGen_Hatcher::Dump () const
{
  cout << endl ;
  cout << "========================================================" << endl ;
  cout << "=== Dump of the hatcher ================================" << endl ;
  cout << "========================================================" << endl ;
  cout << endl ;

  cout << "The points   are "
       << (myKeepPoints   ? "    " : "not ")
       << "considered."
       << endl ;
  cout << "The segments are "
       << (myKeepSegments ? "    " : "not ")
       << "considered."
       << endl ;
  cout << "2D Confusion tolerance : " << myConfusion2d << endl ;
  cout << "3D Confusion tolerance : " << myConfusion3d << endl ;
  
  cout << myNbHatchings
       << " hatching"
       << ((myNbHatchings == 1) ? "" : "s")
       << endl ;
  cout << myNbElements
       << " element"
       << ((myNbElements  == 1) ? "" : "s")
       << endl ;
  
  cout << endl ;
  cout << "========================================================" << endl ;
  cout << "=== Hatchings ==========================================" << endl ;
  cout << "========================================================" << endl ;
  cout << endl ;
  
  for (Standard_Integer IndH = 1 ; IndH <= myNbHatchings ; IndH++) {
    cout << "Hatching # " << IndH ;
    if (!myHatchings.IsBound (IndH)) {
      cout << " is not bound" << endl ;
    } else {
      const HatchGen_Hatching& Hatching = myHatchings.Find (IndH) ;
      Standard_Integer NbPnt = Hatching.NbPoints() ;
      cout << " contains " << NbPnt << " restriction points :"  << endl ;
      for (Standard_Integer IPnt = 1 ; IPnt <= NbPnt ; IPnt++) {
	const HatchGen_PointOnHatching& PntH = Hatching.Point (IPnt) ;
        PntH.Dump (IPnt) ;
      }
      cout << "----------------------------------------------" << endl ;
    }
  }

  cout << endl ;
  cout << "========================================================" << endl ;
  cout << "=== Elements ===========================================" << endl ;
  cout << "========================================================" << endl ;
  cout << endl ;
  
  for (Standard_Integer IndE = 1 ; IndE <= myNbElements ; IndE++) {
    cout << "Element # " << IndE ;
    if (!myElements.IsBound (IndE)) {
      cout << " is not bound" << endl ;
    } else {
      const HatchGen_Element& Element = myElements.Find (IndE) ;
      switch (Element.Orientation()) {
        case TopAbs_FORWARD  : cout << " is FORWARD"  << endl ; break ;
        case TopAbs_REVERSED : cout << " is REVERSED" << endl ; break ;
        case TopAbs_INTERNAL : cout << " is INTERNAL" << endl ; break ;
        case TopAbs_EXTERNAL : cout << " is EXTERNAL" << endl ; break ;
      }
    }
  }

  cout << endl ;
}