Changeset d1dc39 in git for factory/facFqBivarUtil.cc
- Timestamp:
- Apr 28, 2012, 10:11:51 PM (11 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 7a1151d0e820ebe7486137ac2e2edc736ee573fd
- Parents:
- 18a66064a9a8616bef22907b60e68633bfc80c55
- git-author:
- Martin Lee <martinlee84@web.de>2012-04-28 22:11:51+02:00
- git-committer:
- Martin Lee <martinlee84@web.de>2012-05-07 18:19:12+02:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/facFqBivarUtil.cc
r18a660 rd1dc39 669 669 int** newtonPolyg= newtonPolygon (F, sizeOfNewtonPolygon); 670 670 671 int minXIndex= 0, minYIndex= 0, maxXIndex= 0, maxYIndex= 0;672 671 int minX, minY, maxX, maxY; 673 672 minX= newtonPolyg [0] [0]; … … 678 677 { 679 678 if (minX > newtonPolyg [i] [0]) 680 {681 679 minX= newtonPolyg [i] [0]; 682 minXIndex= i;683 }684 680 if (maxX < newtonPolyg [i] [0]) 685 {686 681 maxX= newtonPolyg [i] [0]; 687 maxXIndex= i;688 }689 682 if (minY > newtonPolyg [i] [1]) 690 {691 683 minY= newtonPolyg [i] [1]; 692 minYIndex= i;693 }694 684 if (maxY < newtonPolyg [i] [1]) 695 {696 685 maxY= newtonPolyg [i] [1]; 697 maxYIndex= i;698 }699 686 } 700 687
Note: See TracChangeset
for help on using the changeset viewer.