MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / moveTo

Method moveTo

ij/src/main/java/ij/macro/Functions.java:1131–1138  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1129 }
1130
1131 void moveTo() {
1132 interp.getLeftParen();
1133 int a1 = (int)Math.round(interp.getExpression());
1134 interp.getComma();
1135 int a2 = (int)Math.round(interp.getExpression());
1136 interp.getRightParen();
1137 getProcessor().moveTo(a1, a2);
1138 }
1139
1140 void lineTo() {
1141 interp.getLeftParen();

Callers 4

doFunctionMethod · 0.95
overlayMoveToMethod · 0.45
overlayLineToMethod · 0.45
overlayDrawLineMethod · 0.45

Calls 6

getProcessorMethod · 0.95
getLeftParenMethod · 0.80
getExpressionMethod · 0.80
getCommaMethod · 0.80
getRightParenMethod · 0.80
roundMethod · 0.45

Tested by

no test coverage detected