BasicInterpolator.h 287 B

123456789
  1. #pragma once
  2. #include "BiomInterpolator.h"
  3. class BasicInterpolator : public BiomInterpolator
  4. {
  5. public:
  6. Framework::Either<Block*, int> interpolateBlocks( Framework::Either<Block*, int> a, Framework::Either<Block*, int> b, double aWeight, double bWeight, Noise* zNoise ) override;
  7. };