Changeset 19647 for trunk/Mars/msimreflector/MFresnelLens.cc
- Timestamp:
- 09/15/19 22:22:19 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/msimreflector/MFresnelLens.cc
r19646 r19647 699 699 const int step = outgoing ^ !first ? 1 : -1; 700 700 const int end = outgoing ^ !first ? fGrooves.size() : 1; 701 const int beg = j==0 ? ix : ix+step; 702 703 if (step==-1 && ix==1) // can not count downwards from here 704 continue; 701 const int beg = std::max<size_t>(j==0 ? ix : ix+step, 1); 705 702 706 703 for (int i=beg; i!=end; i+=step)
Note:
See TracChangeset
for help on using the changeset viewer.