mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -05:00
Clean up Future Splash example a bit.
This commit is contained in:
parent
1d6b5e23c8
commit
7ee7895d57
1 changed files with 12 additions and 13 deletions
|
@ -47,15 +47,6 @@
|
|||
|
||||
onResize();
|
||||
|
||||
function onResize() {
|
||||
values.count = 0;
|
||||
if (path) {
|
||||
path.remove();
|
||||
}
|
||||
size = view.bounds.size * [2, 1];
|
||||
path = createPath(0.1);
|
||||
}
|
||||
|
||||
function createPath(strength) {
|
||||
var path = new Path();
|
||||
path.data = {};
|
||||
|
@ -81,10 +72,18 @@
|
|||
return path;
|
||||
}
|
||||
|
||||
function onResize() {
|
||||
values.count = 0;
|
||||
if (path) {
|
||||
path.remove();
|
||||
}
|
||||
size = view.bounds.size * [2, 1];
|
||||
path = createPath(0.1);
|
||||
}
|
||||
|
||||
function onMouseMove(event) {
|
||||
var segments = path.segments;
|
||||
var index = Math.floor((event.point.x + size.width / 4)
|
||||
* segments.length / size.width);
|
||||
var index = Math.floor((event.point.x + size.width / 4) * segments.length / size.width);
|
||||
var y = event.point.y;
|
||||
var range = size.height / 4;
|
||||
var segment = segments[index];
|
||||
|
|
Loading…
Reference in a new issue