зеркало из https://github.com/mozilla/pluotsorbet.git
drawLine needs to use withPixel; colors are correct in asteroids now
This commit is contained in:
Родитель
ca78a269d7
Коммит
7f9ac92b65
14
midp/gfx.js
14
midp/gfx.js
|
@ -531,12 +531,14 @@
|
||||||
dx = x2 - x1, dy = y2 - y1;
|
dx = x2 - x1, dy = y2 - y1;
|
||||||
withClip(_this, x1, y1, function(x, y) {
|
withClip(_this, x1, y1, function(x, y) {
|
||||||
withSize(dx, dy, function(dx, dy) {
|
withSize(dx, dy, function(dx, dy) {
|
||||||
var ctx = MIDP.Context2D;
|
withPixel(_this, function() {
|
||||||
ctx.beginPath();
|
var ctx = MIDP.Context2D;
|
||||||
ctx.moveTo(x, y);
|
ctx.beginPath();
|
||||||
ctx.lineTo(x + dx, y + dy);
|
ctx.moveTo(x, y);
|
||||||
ctx.stroke();
|
ctx.lineTo(x + dx, y + dy);
|
||||||
ctx.closePath();
|
ctx.stroke();
|
||||||
|
ctx.closePath();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче