MCPcopy Create free account
hub / github.com/DOI-USGS/ISIS3 / GetNumEditLockPoints

Method GetNumEditLockPoints

isis/src/control/objs/ControlNet/ControlNet.cpp:1372–1380  ·  view source on GitHub ↗

* Returns the number of edit locked control points * * @return Number of edit locked control points */

Source from the content-addressed store, hash-verified

1370 * @return Number of edit locked control points
1371 */
1372 int ControlNet::GetNumEditLockPoints() {
1373 int editLockPoints = 0;
1374 foreach(ControlPoint * p, *points) {
1375 if (p->IsEditLocked())
1376 editLockPoints++;
1377 }
1378
1379 return editLockPoints;
1380 }
1381
1382
1383 /**

Callers 3

TEST_FFunction · 0.80
TEST_FFunction · 0.80

Calls 2

foreachFunction · 0.70
IsEditLockedMethod · 0.45

Tested by 2

TEST_FFunction · 0.64
TEST_FFunction · 0.64