OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CORNER_ANGLE
(Results
1 - 2
of
2
) sorted by null
/development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java
590
private static final float
CORNER_ANGLE
= (float) Math.PI * 2 / 3;
611
mPath.lineTo((float)Math.cos(-
CORNER_ANGLE
) * mSize,
612
(float)Math.sin(-
CORNER_ANGLE
) * mSize);
614
mPath.lineTo((float)Math.cos(
CORNER_ANGLE
) * mSize,
615
(float)Math.sin(
CORNER_ANGLE
) * mSize);
/development/samples/ControllerSample/src/com/example/controllersample/
GameView.java
640
private static final float
CORNER_ANGLE
= (float) Math.PI * 2 / 3;
681
mPath.lineTo((float) Math.cos(-
CORNER_ANGLE
) * mSize,
682
(float) Math.sin(-
CORNER_ANGLE
) * mSize);
684
mPath.lineTo((float) Math.cos(
CORNER_ANGLE
) * mSize,
685
(float) Math.sin(
CORNER_ANGLE
) * mSize);
[
all
...]
Completed in 25 milliseconds