Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
keyboard
LatinIME
Commits
0d034b31
Commit
0d034b31
authored
12 years ago
by
Tadashi G. Takaoka
Browse files
Options
Downloads
Patches
Plain Diff
Consolidate data and algorithm of calculating rounded line (Step 1)
Change-Id: Ic6d72b5a34ddfbc55317fa651f78af6f50c9a284
parent
9b935084
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/keyboard/internal/GesturePreviewTrail.java
+60
-60
60 additions, 60 deletions
...id/inputmethod/keyboard/internal/GesturePreviewTrail.java
with
60 additions
and
60 deletions
java/src/com/android/inputmethod/keyboard/internal/GesturePreviewTrail.java
+
60
−
60
View file @
0d034b31
...
@@ -144,68 +144,68 @@ final class GesturePreviewTrail {
...
@@ -144,68 +144,68 @@ final class GesturePreviewTrail {
// Sweep angle of the trail arc at P2.
// Sweep angle of the trail arc at P2.
public
float
a2
;
public
float
a2
;
public
RectF
arc2
=
new
RectF
();
public
RectF
arc2
=
new
RectF
();
}
private
static
final
float
R
IGHT_ANGLE
=
(
float
)(
Math
.
PI
/
2.0d
);
private
static
final
float
R
ADIAN_TO_DEGREE
=
(
float
)(
180.0d
/
Math
.
PI
);
private
static
final
float
R
ADIAN_TO_DEGREE
=
(
float
)(
180.0d
/
Math
.
PI
);
private
static
final
float
R
IGHT_ANGLE
=
(
float
)(
Math
.
PI
/
2.0d
);
private
static
boolean
calculatePathPoints
(
final
WorkingSet
w
)
{
public
static
boolean
calculatePathPoints
(
final
WorkingSet
w
)
{
final
float
dx
=
w
.
p2x
-
w
.
p1x
;
final
float
dx
=
w
.
p2x
-
w
.
p1x
;
final
float
dy
=
w
.
p2y
-
w
.
p1y
;
final
float
dy
=
w
.
p2y
-
w
.
p1y
;
// Distance of the points.
// Distance of the points.
final
double
l
=
Math
.
hypot
(
dx
,
dy
);
final
double
l
=
Math
.
hypot
(
dx
,
dy
);
if
(
Double
.
compare
(
0.0d
,
l
)
==
0
)
{
if
(
Double
.
compare
(
0.0d
,
l
)
==
0
)
{
return
false
;
return
false
;
}
// Angle of the line p1-p2
final
float
a
=
(
float
)
Math
.
atan2
(
dy
,
dx
);
// Difference of trail cap radius.
final
float
dr
=
w
.
r2
-
w
.
r1
;
// Variation of angle at trail cap.
final
float
ar
=
(
float
)
Math
.
asin
(
dr
/
l
);
// The start angle of trail cap arc at P1.
final
float
aa
=
a
-
(
RIGHT_ANGLE
+
ar
);
// The end angle of trail cap arc at P2.
final
float
ab
=
a
+
(
RIGHT_ANGLE
+
ar
);
final
float
cosa
=
(
float
)
Math
.
cos
(
aa
);
final
float
sina
=
(
float
)
Math
.
sin
(
aa
);
final
float
cosb
=
(
float
)
Math
.
cos
(
ab
);
final
float
sinb
=
(
float
)
Math
.
sin
(
ab
);
w
.
p1ax
=
w
.
p1x
+
w
.
r1
*
cosa
;
w
.
p1ay
=
w
.
p1y
+
w
.
r1
*
sina
;
w
.
p1bx
=
w
.
p1x
+
w
.
r1
*
cosb
;
w
.
p1by
=
w
.
p1y
+
w
.
r1
*
sinb
;
w
.
p2ax
=
w
.
p2x
+
w
.
r2
*
cosa
;
w
.
p2ay
=
w
.
p2y
+
w
.
r2
*
sina
;
w
.
p2bx
=
w
.
p2x
+
w
.
r2
*
cosb
;
w
.
p2by
=
w
.
p2y
+
w
.
r2
*
sinb
;
w
.
aa
=
aa
*
RADIAN_TO_DEGREE
;
final
float
ar2degree
=
ar
*
2.0f
*
RADIAN_TO_DEGREE
;
w
.
a1
=
-
180.0f
+
ar2degree
;
w
.
a2
=
180.0f
+
ar2degree
;
w
.
arc1
.
set
(
w
.
p1x
,
w
.
p1y
,
w
.
p1x
,
w
.
p1y
);
w
.
arc1
.
inset
(-
w
.
r1
,
-
w
.
r1
);
w
.
arc2
.
set
(
w
.
p2x
,
w
.
p2y
,
w
.
p2x
,
w
.
p2y
);
w
.
arc2
.
inset
(-
w
.
r2
,
-
w
.
r2
);
return
true
;
}
}
// Angle of the line p1-p2
final
float
a
=
(
float
)
Math
.
atan2
(
dy
,
dx
);
// Difference of trail cap radius.
final
float
dr
=
w
.
r2
-
w
.
r1
;
// Variation of angle at trail cap.
final
float
ar
=
(
float
)
Math
.
asin
(
dr
/
l
);
// The start angle of trail cap arc at P1.
final
float
aa
=
a
-
(
RIGHT_ANGLE
+
ar
);
// The end angle of trail cap arc at P2.
final
float
ab
=
a
+
(
RIGHT_ANGLE
+
ar
);
final
float
cosa
=
(
float
)
Math
.
cos
(
aa
);
final
float
sina
=
(
float
)
Math
.
sin
(
aa
);
final
float
cosb
=
(
float
)
Math
.
cos
(
ab
);
final
float
sinb
=
(
float
)
Math
.
sin
(
ab
);
w
.
p1ax
=
w
.
p1x
+
w
.
r1
*
cosa
;
w
.
p1ay
=
w
.
p1y
+
w
.
r1
*
sina
;
w
.
p1bx
=
w
.
p1x
+
w
.
r1
*
cosb
;
w
.
p1by
=
w
.
p1y
+
w
.
r1
*
sinb
;
w
.
p2ax
=
w
.
p2x
+
w
.
r2
*
cosa
;
w
.
p2ay
=
w
.
p2y
+
w
.
r2
*
sina
;
w
.
p2bx
=
w
.
p2x
+
w
.
r2
*
cosb
;
w
.
p2by
=
w
.
p2y
+
w
.
r2
*
sinb
;
w
.
aa
=
aa
*
RADIAN_TO_DEGREE
;
final
float
ar2degree
=
ar
*
2.0f
*
RADIAN_TO_DEGREE
;
w
.
a1
=
-
180.0f
+
ar2degree
;
w
.
a2
=
180.0f
+
ar2degree
;
w
.
arc1
.
set
(
w
.
p1x
,
w
.
p1y
,
w
.
p1x
,
w
.
p1y
);
w
.
arc1
.
inset
(-
w
.
r1
,
-
w
.
r1
);
w
.
arc2
.
set
(
w
.
p2x
,
w
.
p2y
,
w
.
p2x
,
w
.
p2y
);
w
.
arc2
.
inset
(-
w
.
r2
,
-
w
.
r2
);
return
true
;
}
private
static
void
createPath
(
final
Path
path
,
final
WorkingSet
w
)
{
public
static
void
createPath
(
final
Path
path
,
final
WorkingSet
w
)
{
path
.
rewind
();
path
.
rewind
();
// Trail cap at P1.
// Trail cap at P1.
path
.
moveTo
(
w
.
p1x
,
w
.
p1y
);
path
.
moveTo
(
w
.
p1x
,
w
.
p1y
);
path
.
arcTo
(
w
.
arc1
,
w
.
aa
,
w
.
a1
);
path
.
arcTo
(
w
.
arc1
,
w
.
aa
,
w
.
a1
);
// Trail cap at P2.
// Trail cap at P2.
path
.
moveTo
(
w
.
p2x
,
w
.
p2y
);
path
.
moveTo
(
w
.
p2x
,
w
.
p2y
);
path
.
arcTo
(
w
.
arc2
,
w
.
aa
,
w
.
a2
);
path
.
arcTo
(
w
.
arc2
,
w
.
aa
,
w
.
a2
);
// Two trapezoids connecting P1 and P2.
// Two trapezoids connecting P1 and P2.
path
.
moveTo
(
w
.
p1ax
,
w
.
p1ay
);
path
.
moveTo
(
w
.
p1ax
,
w
.
p1ay
);
path
.
lineTo
(
w
.
p1x
,
w
.
p1y
);
path
.
lineTo
(
w
.
p1x
,
w
.
p1y
);
path
.
lineTo
(
w
.
p1bx
,
w
.
p1by
);
path
.
lineTo
(
w
.
p1bx
,
w
.
p1by
);
path
.
lineTo
(
w
.
p2bx
,
w
.
p2by
);
path
.
lineTo
(
w
.
p2bx
,
w
.
p2by
);
path
.
lineTo
(
w
.
p2x
,
w
.
p2y
);
path
.
lineTo
(
w
.
p2x
,
w
.
p2y
);
path
.
lineTo
(
w
.
p2ax
,
w
.
p2ay
);
path
.
lineTo
(
w
.
p2ax
,
w
.
p2ay
);
path
.
close
();
path
.
close
();
}
}
}
private
final
WorkingSet
mWorkingSet
=
new
WorkingSet
();
private
final
WorkingSet
mWorkingSet
=
new
WorkingSet
();
...
@@ -262,8 +262,8 @@ final class GesturePreviewTrail {
...
@@ -262,8 +262,8 @@ final class GesturePreviewTrail {
paint
.
setAlpha
(
alpha
);
paint
.
setAlpha
(
alpha
);
final
float
width
=
getWidth
(
elapsedTime
,
params
);
final
float
width
=
getWidth
(
elapsedTime
,
params
);
w
.
r2
=
width
/
2.0f
;
w
.
r2
=
width
/
2.0f
;
if
(
calculatePathPoints
(
w
))
{
if
(
WorkingSet
.
calculatePathPoints
(
w
))
{
createPath
(
path
,
w
);
WorkingSet
.
createPath
(
path
,
w
);
canvas
.
drawPath
(
path
,
paint
);
canvas
.
drawPath
(
path
,
paint
);
outBoundsRect
.
union
((
int
)
w
.
p2x
,
(
int
)
w
.
p2y
);
outBoundsRect
.
union
((
int
)
w
.
p2x
,
(
int
)
w
.
p2y
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment