1#include "stdafx.h" 2#include "Emboss.h" 3 4Emboss::Emboss(Synth *synth) 5{ 6 this->synth = synth; 7} 8 9double Emboss::getValue(double x, double y) 10{ 11 return synth->getValue(x, y) - synth->getValue(x + 1, y + 1); 12}