Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
DTriangleShape.java38 Path triangularPath = new Path(); in create() local
40 triangularPath.moveTo(0, height); in create()
41 triangularPath.lineTo(width, height); in create()
42 triangularPath.lineTo(width / 2, 0); in create()
43 triangularPath.close(); in create()
45 triangularPath.moveTo(0, 0); in create()
46 triangularPath.lineTo(width / 2, height); in create()
47 triangularPath.lineTo(width, 0); in create()
48 triangularPath.close(); in create()
50 return new TriangleShape(triangularPath, width, height); in create()
[all …]