Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PET-rating
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
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
Timo Heikkilä
PET-rating
Commits
5784ec04
Commit
5784ec04
authored
6 years ago
by
Ossi Laine
Browse files
Options
Downloads
Patches
Plain Diff
Change brush size (test version)
parent
7d5f7c7a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
app/static/js/canvas.js
+42
-6
42 additions, 6 deletions
app/static/js/canvas.js
app/task/templates/task.html
+3
-0
3 additions, 0 deletions
app/task/templates/task.html
with
45 additions
and
6 deletions
app/static/js/canvas.js
+
42
−
6
View file @
5784ec04
...
@@ -35,6 +35,33 @@ $(document).ready(function() {
...
@@ -35,6 +35,33 @@ $(document).ready(function() {
var
clickY
=
new
Array
();
var
clickY
=
new
Array
();
var
clickDrag
=
new
Array
();
var
clickDrag
=
new
Array
();
var
paint
;
var
paint
;
var
drawRadius
=
15
;
// TODO: changing drawradius doesnt affect to the saved datapoints !!!
// Bigger brush should make more datapoints compared to smaller ones.
$
(
"
.canvas-container
"
).
bind
(
'
DOMMouseScroll
'
,
function
(
event
)
{
event
.
preventDefault
()
// Change brush size
if
(
event
.
originalEvent
.
detail
>=
0
){
if
(
drawRadius
>=
15
)
{
drawRadius
-=
5
;
}
}
else
{
if
(
drawRadius
<=
15
)
{
drawRadius
+=
5
;
}
}
// Show brush size to user
if
(
drawRadius
==
10
)
{
this
.
firstElementChild
.
innerHTML
=
"
small brush
"
}
else
if
(
drawRadius
==
15
)
{
this
.
firstElementChild
.
innerHTML
=
"
normal brush
"
}
else
if
(
drawRadius
==
20
)
{
this
.
firstElementChild
.
innerHTML
=
"
large brush
"
}
})
function
addClick
(
x
,
y
,
dragging
)
function
addClick
(
x
,
y
,
dragging
)
{
{
...
@@ -46,6 +73,12 @@ $(document).ready(function() {
...
@@ -46,6 +73,12 @@ $(document).ready(function() {
clickDrag
.
push
(
dragging
);
clickDrag
.
push
(
dragging
);
}
}
function
drawPoint
(
x
,
y
,
radius
)
{
context
.
beginPath
();
context
.
arc
(
x
,
y
,
radius
,
0
,
2
*
Math
.
PI
,
false
);
context
.
fill
()
}
function
redraw
(){
function
redraw
(){
...
@@ -65,16 +98,19 @@ $(document).ready(function() {
...
@@ -65,16 +98,19 @@ $(document).ready(function() {
context
.
globalAlpha
=
0.2
context
.
globalAlpha
=
0.2
// Gradient:
// Gradient:
var
gradient
=
context
.
createRadialGradient
(
lastX
,
lastY
,
1
,
lastX
,
lastY
,
15
);
var
gradient
=
context
.
createRadialGradient
(
lastX
,
lastY
,
1
,
lastX
,
lastY
,
drawRadius
);
gradient
.
addColorStop
(
0
,
"
rgba(255,0,0,1)
"
);
gradient
.
addColorStop
(
0
,
"
rgba(255,0,0,1)
"
);
gradient
.
addColorStop
(
1
,
"
rgba(255,0,0,0.1)
"
);
gradient
.
addColorStop
(
1
,
"
rgba(255,0,0,0.1)
"
);
// Draw circle with gradient
context
.
beginPath
();
context
.
arc
(
lastX
,
lastY
,
15
,
0
,
2
*
Math
.
PI
,
false
);
context
.
fillStyle
=
gradient
context
.
fillStyle
=
gradient
context
.
fill
()
// Draw circle with gradient
drawPoint
(
lastX
,
lastY
,
drawRadius
)
/*
drawPoint(lastX + 3, lastY, drawRadius)
drawPoint(lastX - 3, lastY, drawRadius)
drawPoint(lastX, lastY + 3, drawRadius)
drawPoint(lastX, lastY - 3, drawRadius)
*/
drawMaskToBaseImage
()
drawMaskToBaseImage
()
/*
/*
...
...
This diff is collapsed.
Click to expand it.
app/task/templates/task.html
+
3
−
0
View file @
5784ec04
...
@@ -98,7 +98,10 @@
...
@@ -98,7 +98,10 @@
{% if form.__name__ == 'embody' %}
{% if form.__name__ == 'embody' %}
<div
class=
"canvas-container"
>
<span
class=
"canvas-info"
></span>
<canvas
id=
"embody-canvas"
width=
"200"
height=
"100"
style=
"border: 1px solid blue;"
></canvas>
<canvas
id=
"embody-canvas"
width=
"200"
height=
"100"
style=
"border: 1px solid blue;"
></canvas>
</div>
<img
id=
"baseImage"
class=
""
src=
{{
url_for
('
static
',
filename=
'img/dummy_600.png'
)
}}
/>
<img
id=
"baseImage"
class=
""
src=
{{
url_for
('
static
',
filename=
'img/dummy_600.png'
)
}}
/>
<img
id=
"baseImageMask"
class=
"hidden"
src=
{{
url_for
('
static
',
filename=
'img/dummy_600_mask.png'
)
}}
/>
<img
id=
"baseImageMask"
class=
"hidden"
src=
{{
url_for
('
static
',
filename=
'img/dummy_600_mask.png'
)
}}
/>
...
...
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