All Downloads are FREE. Search and download functionalities are using the official Maven repository.

us.ihmc.simulationconstructionset.util.ground.RepeatingHeightMap Maven / Gradle / Ivy

There is a newer version: 0.25.2
Show newest version
package us.ihmc.simulationconstructionset.util.ground;

import us.ihmc.euclid.geometry.BoundingBox3D;
import us.ihmc.euclid.tuple3D.interfaces.Vector3DBasics;
import us.ihmc.jMonkeyEngineToolkit.HeightMapWithNormals;

public class RepeatingHeightMap implements HeightMapWithNormals
{
   private double xMin, xMax, yMin, yMax;
   private double xDistance, yDistance;

   private final HeightMapWithNormals heightMap;
   private final BoundingBox3D boundingBox;

   public RepeatingHeightMap(HeightMapWithNormals heightMap, double xMin, double xMax, double yMin, double yMax)
   {
      this.xMin = xMin;
      this.xMax = xMax;

      this.yMin = yMin;
      this.yMax = yMax;

      xDistance = this.xMax - this.xMin;
      yDistance = this.yMax - this.yMin;

      this.heightMap = heightMap;

      double zMin = heightMap.getBoundingBox().getMinZ();
      double zMax = heightMap.getBoundingBox().getMaxZ();
      boundingBox = new BoundingBox3D(xMin, yMin, zMin, xMax, yMax, zMax);
   }

   private double xLocal(double xGlobal)
   {
      return (Math.abs(xGlobal - xMin) % xDistance) + xMin;
   }

   private double yLocal(double yGlobal)
   {
      return (Math.abs(yGlobal - yMin) % yDistance) + yMin;
   }

   @Override
   public double heightAndNormalAt(double x, double y, double z, Vector3DBasics normalToPack)
   {
      double localX = xLocal(x);
      double localY = yLocal(y);

      return heightMap.heightAndNormalAt(localX, localY, z, normalToPack);
   }

   @Override
   public double heightAt(double x, double y, double z)
   {
      return heightMap.heightAt(xLocal(x), yLocal(y), z);
   }

   @Override
   public BoundingBox3D getBoundingBox()
   {
      return boundingBox;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy