Source code for body.heightmap_terrain

from bodybase import BodyBase
[docs]class HeightMapTerrain(BodyBase): """ an height map terrain object """ def __init__(pos,size,height_map): """ pos: position of the plane size: (int,int) width and depth of the plane height_map: [int][int] list of points for the height map """ pass