Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
dc014ab3
Commit
dc014ab3
authored
Sep 02, 2015
by
Claes Sjofors
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Android app, fix for arc drawing
parent
054320a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
java/aapp/jopg/src/GlowDraw.java
java/aapp/jopg/src/GlowDraw.java
+2
-2
No files found.
java/aapp/jopg/src/GlowDraw.java
View file @
dc014ab3
...
...
@@ -169,7 +169,7 @@ public class GlowDraw implements GlowDrawIfc {
paint
.
setColor
(
color
);
paint
.
setStyle
(
Paint
.
Style
.
FILL
);
canvas
.
drawArc
(
new
RectF
((
float
)
x
,
(
float
)
y
,
(
float
)(
x
+
width
),
(
float
)(
y
+
height
)),
(
float
)(
360
-
angle1
),
(
float
)(-
angle2
),
fals
e
,
paint
);
canvas
.
drawArc
(
new
RectF
((
float
)
x
,
(
float
)
y
,
(
float
)(
x
+
width
),
(
float
)(
y
+
height
)),
(
float
)(
360
-
angle1
),
(
float
)(-
angle2
),
tru
e
,
paint
);
}
public
void
gradient_fill_arc
(
int
x
,
int
y
,
int
width
,
int
height
,
int
angle1
,
int
angle2
,
int
gc_type
,
int
f1
,
int
f2
,
int
gradient
)
{
...
...
@@ -178,7 +178,7 @@ public class GlowDraw implements GlowDrawIfc {
setGradient
(
gradient
,
f1
,
f2
,
(
float
)
x
,
(
float
)
y
,
(
float
)
width
,
(
float
)
height
);
paint
.
setStyle
(
Paint
.
Style
.
FILL
);
canvas
.
drawArc
(
new
RectF
((
float
)
x
,
(
float
)
y
,
(
float
)(
x
+
width
),
(
float
)(
y
+
height
)),
(
float
)(
360
-
angle1
),
(
float
)(-
angle2
),
fals
e
,
paint
);
canvas
.
drawArc
(
new
RectF
((
float
)
x
,
(
float
)
y
,
(
float
)(
x
+
width
),
(
float
)(
y
+
height
)),
(
float
)(
360
-
angle1
),
(
float
)(-
angle2
),
tru
e
,
paint
);
paint
.
setShader
(
null
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment