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

us.ihmc.simulationconstructionset.HeightMapFromGroundContactModel Maven / Gradle / Ivy

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

import us.ihmc.graphicsDescription.HeightMap;
import us.ihmc.jMonkeyEngineToolkit.GroundProfile3D;

public class HeightMapFromGroundContactModel
{

   public static HeightMap getHeightMap(GroundContactModel groundContactModel)
   {
      HeightMap heightMap = null;

      if (groundContactModel != null)
      {
         GroundProfile3D groundProfile3D = groundContactModel.getGroundProfile3D();

         if (groundProfile3D != null)
            heightMap = groundProfile3D.getHeightMapIfAvailable();
      }

      return heightMap;
   }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy