Home
last modified time | relevance | path

Searched refs:arrowHeight (Results 1 – 1 of 1) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DGCWrapper.java534 int arrowHeight = size; in drawArrow() local
573 graphics.drawLine(x2 - arrowWidth, y2 - arrowHeight, x2, y2); in drawArrow()
574 graphics.drawLine(x2 + arrowWidth, y2 - arrowHeight, x2, y2); in drawArrow()
576 graphics.drawLine(x2 - arrowWidth, y2 + arrowHeight, x2, y2); in drawArrow()
577 graphics.drawLine(x2 + arrowWidth, y2 + arrowHeight, x2, y2); in drawArrow()
582 graphics.drawLine(x2 - arrowHeight, y2 - arrowWidth, x2, y2); in drawArrow()
583 graphics.drawLine(x2 - arrowHeight, y2 + arrowWidth, x2, y2); in drawArrow()
585 graphics.drawLine(x2 + arrowHeight, y2 - arrowWidth, x2, y2); in drawArrow()
586 graphics.drawLine(x2 + arrowHeight, y2 + arrowWidth, x2, y2); in drawArrow()
600 double ax = x1 + lineLength - arrowHeight; in drawArrow()