mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/4jcraft.git
synced 2026-06-07 07:55:09 +00:00
chore: format Minecraft.World
This commit is contained in:
@@ -1,13 +1,11 @@
|
||||
#include "../Platform/stdafx.h"
|
||||
#include "Distort.h"
|
||||
|
||||
Distort::Distort(Synth *source, Synth *distort)
|
||||
{
|
||||
Distort::Distort(Synth* source, Synth* distort) {
|
||||
this->source = source;
|
||||
this->distort = distort;
|
||||
}
|
||||
|
||||
double Distort::getValue(double x, double y)
|
||||
{
|
||||
double Distort::getValue(double x, double y) {
|
||||
return source->getValue(x + distort->getValue(x, y), y);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user