174 lines
4.7 KiB
Python
174 lines
4.7 KiB
Python
import copy
|
|
import mujoco
|
|
import pprint
|
|
import numpy as np
|
|
import open3d as o3d
|
|
|
|
def create_hemisphere(
|
|
radius: float,
|
|
resolution: int = 20,
|
|
theta_steps: int = 50,
|
|
phi_steps: int = 50
|
|
):
|
|
|
|
points = []
|
|
for i in range(phi_steps + 1):
|
|
phi = np.pi / 2 * i / phi_steps
|
|
for j in range(theta_steps + 1):
|
|
theta = 2 * np.pi * j / theta_steps
|
|
x = radius * np.sin(phi) * np.cos(theta)
|
|
y = radius * np.sin(phi) * np.sin(theta)
|
|
z = radius * np.cos(phi)
|
|
points.append([x, y, z])
|
|
|
|
pcd = o3d.geometry.PointCloud()
|
|
pcd.points = o3d.utility.Vector3dVector(points)
|
|
|
|
mesh = pcd.compute_convex_hull()[0]
|
|
|
|
return mesh
|
|
|
|
def mesh_config_generator(
|
|
name: str,
|
|
geom_type: mujoco.mjtGeom,
|
|
size: np.ndarray
|
|
):
|
|
|
|
if geom_type == mujoco.mjtGeom.mjGEOM_PLANE:
|
|
return {
|
|
"name": name,
|
|
"box": {
|
|
"width": size[0] * 2 if size[0] > 0 else 100,
|
|
"height": size[1] * 2 if size[1] > 0 else 100,
|
|
"depth": 0.001,
|
|
"map_texture_to_each_face": True,
|
|
}
|
|
}
|
|
elif geom_type == mujoco.mjtGeom.mjGEOM_SPHERE:
|
|
return {
|
|
"name": name,
|
|
"sphere": {
|
|
"radius": float(size[0])
|
|
}
|
|
}
|
|
elif geom_type == mujoco.mjtGeom.mjGEOM_CAPSULE:
|
|
cylinder = mesh_config_generator(name, mujoco.mjtGeom.mjGEOM_CYLINDER, size)
|
|
return {
|
|
"name": name,
|
|
"cylinder": cylinder["cylinder"],
|
|
"left_hemisphere": {
|
|
"radius": size[0],
|
|
"transform": {
|
|
"translate": (0, 0, -size[2]),
|
|
"rotate": (np.pi, 0, 0)
|
|
}
|
|
},
|
|
"right_hemisphere": {
|
|
"radius": size[0],
|
|
"transform": {
|
|
"translate": (0, 0, size[2])
|
|
}
|
|
},
|
|
}
|
|
elif geom_type == mujoco.mjtGeom.mjGEOM_ELLIPSOID:
|
|
sphere = mesh_config_generator(name, mujoco.mjtGeom.mjGEOM_SPHERE, [1.0])
|
|
sphere["sphere"]["transform"] = {
|
|
"scale": tuple(size)
|
|
}
|
|
return {
|
|
"name": name,
|
|
"sphere": sphere["sphere"],
|
|
}
|
|
elif geom_type == mujoco.mjtGeom.mjGEOM_CYLINDER:
|
|
return {
|
|
"name": name,
|
|
"cylinder": {
|
|
"radius": size[0],
|
|
"height": size[2] * 2,
|
|
}
|
|
}
|
|
elif geom_type == mujoco.mjtGeom.mjGEOM_BOX:
|
|
return {
|
|
"name": name,
|
|
"box": {
|
|
"width": size[0] * 2,
|
|
"height": size[1] * 2,
|
|
"depth": size[2] * 2,
|
|
}
|
|
}
|
|
else:
|
|
raise NotImplemented(f"{geom_type} primitive geom type not implemented with USD integration")
|
|
|
|
|
|
def mesh_generator(
|
|
mesh_config: dict
|
|
):
|
|
|
|
assert "name" in mesh_config
|
|
|
|
mesh = None
|
|
|
|
for shape, config in mesh_config.items():
|
|
|
|
if shape == "name":
|
|
continue
|
|
|
|
if "box" in shape:
|
|
prim_mesh = o3d.geometry.TriangleMesh.create_box(
|
|
width=mesh_config[shape]["width"],
|
|
height=mesh_config[shape]["height"],
|
|
depth=mesh_config[shape]["depth"],
|
|
create_uv_map=True,
|
|
map_texture_to_each_face=True,
|
|
)
|
|
elif "hemisphere" in shape:
|
|
prim_mesh = create_hemisphere(
|
|
radius=mesh_config[shape]["radius"]
|
|
)
|
|
elif "sphere" in shape:
|
|
prim_mesh = o3d.geometry.TriangleMesh.create_sphere(
|
|
radius=mesh_config[shape]["radius"],
|
|
create_uv_map=True
|
|
)
|
|
elif "cylinder" in shape:
|
|
prim_mesh = o3d.geometry.TriangleMesh.create_cylinder(
|
|
radius=mesh_config[shape]["radius"],
|
|
height=mesh_config[shape]["height"],
|
|
create_uv_map=True,
|
|
)
|
|
|
|
if "transform" in config:
|
|
|
|
if "rotate" in config["transform"]:
|
|
R = mesh.get_rotation_matrix_from_xyz(config["transform"]["rotate"])
|
|
prim_mesh.rotate(R, center=(0, 0, 0))
|
|
if "scale" in config["transform"]:
|
|
prim_mesh.vertices = o3d.utility.Vector3dVector(
|
|
np.asarray(prim_mesh.vertices) * np.array(config["transform"]["scale"]))
|
|
if "translate" in config["transform"]:
|
|
prim_mesh.translate(config["transform"]["translate"])
|
|
|
|
# for transform, val in config["transform"].items():
|
|
# if transform == "translate":
|
|
# prim_mesh.translate(val)
|
|
# elif transform == "scale":
|
|
# prim_mesh.vertices = o3d.utility.Vector3dVector(
|
|
# np.asarray(prim_mesh.vertices) * np.array(val))
|
|
# elif transform == "rotate":
|
|
# R = mesh.get_rotation_matrix_from_xyz(val)
|
|
# prim_mesh.rotate(R, center=(0, 0, 0))
|
|
|
|
if not mesh:
|
|
mesh = prim_mesh
|
|
else:
|
|
mesh += prim_mesh
|
|
|
|
return mesh_config["name"], mesh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|