mirror of
https://github.com/konvajs/konva.git
synced 2025-12-03 20:23:54 +08:00
I removed the ability to do a convolution with a 1D matrix because I was using all 2D matrices. I also cleaned up some unused variables and filters. I took the entire group of tests dealing with image filters and put them into `filterTests.html` and `filterTests.js`. I removed them from `visualTests.js`.
27 lines
776 B
HTML
27 lines
776 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
/* overwrite CSS */
|
|
|
|
</style>
|
|
<link rel="stylesheet" type="text/css"href="../base.css">
|
|
<script src="../../dist/kinetic-v0.0.0.js"></script>
|
|
<script src="../assets/dataUrls.js"></script>
|
|
<script src="../js/Test.js"></script>
|
|
<script src="../js/filterTests.js"></script>
|
|
<script>
|
|
window.onload = function() {
|
|
var test = new Test();
|
|
test.run();
|
|
|
|
document.getElementsByTagName('body')[0].addEventListener('mousemove', function(evt) {
|
|
//console.log(evt.clientX + ',' + evt.clientY);
|
|
}, false);
|
|
};
|
|
|
|
</script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|