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

Method overlayMoveTo

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

Source from the content-addressed store, hash-verified

7263 }
7264
7265 double overlayMoveTo() {
7266 if (overlayPath==null)
7267 overlayPath = new GeneralPath();
7268 interp.getLeftParen();
7269 float x = (float)interp.getExpression();
7270 interp.getComma();
7271 float y = (float)interp.getExpression();
7272 interp.getRightParen();
7273 overlayPath.moveTo(x, y);
7274 return Double.NaN;
7275 }
7276
7277 double overlayLineTo() {
7278 if (overlayPath==null) {

Callers 1

doOverlayMethod · 0.95

Calls 5

getLeftParenMethod · 0.80
getExpressionMethod · 0.80
getCommaMethod · 0.80
getRightParenMethod · 0.80
moveToMethod · 0.45

Tested by

no test coverage detected