MCPcopy Create free account
hub / github.com/OpenEndedGroup/Field2 / pop

Method pop

src/main/java/field/graphics/FLine.java:2175–2182  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2173 heading = heading.duplicate();
2174 return moveTo(nodes.get(s.index).to);
2175 }
2176
2177 /**
2178 * removes 'n' number of drawing instructions from the start of this line
2179 */
2180 public FLine trimStart(int n) {
2181 n = Math.min(n, nodes.size());
2182 if (n == 0) return this;
2183
2184 mod++;
2185 nodes = new ArrayList(nodes.subList(n, nodes.size()));

Callers 15

postal.min.jsFile · 0.45
formatValueFunction · 0.45
baseIsEqualDeepFunction · 0.45
jshint.jsFile · 0.45
_checkParamsFunction · 0.45
scopeManagerFunction · 0.45
expressionFunction · 0.45
hFunction · 0.45
PtFunction · 0.45
UeFunction · 0.45
$eFunction · 0.45
orFunction · 0.45

Calls 5

moveToMethod · 0.95
duplicateMethod · 0.65
getMethod · 0.65
sizeMethod · 0.45
removeMethod · 0.45

Tested by

no test coverage detected