Pixelfest / Sistem

Stereogram generator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Echoes when there shouldn't be

Pixelfest opened this issue · comments

Commandline with "-d Circles.png -p TestPattern.png" generates an image with small echoes. I think this can be fixed.

// Code is it is now
var left = x - separation / 2;
var right = left + separation;

// This misalignes from the center, but everything on the left is echo-less! Echoes are worse on the right.
var left = x - separation;
var right = x;