Can all the calls to v, e and aux, between these two bookmarks be skipped? Returns true if we have skipped forward, false otherwise.
(Bookmark from, Bookmark to)
| 361 | if (!from.stillValid() || from.getOuter() != this) return false; |
| 362 | vertexCursor = to.vertexCursor; |
| 363 | elementCursor = to.elementCursor; |
| 364 | return true; |
| 365 | } |
| 366 | |
| 367 | /** |
| 368 | * Can all the calls to v, e and aux, between these two bookmarks be skipped? Returns true if we have skipped forward, false otherwise. Bookmarks can be unskippable because |
| 369 | * externalHashes have changed, because internalHashes have changed (for example an aux channgel has been added) or because the geometry layout has changed (the number of vertices or elements |
| 370 | * added up to this point is different). |
| 371 | * <p> |
no test coverage detected