Слияние веток 91 и path2pddl

This commit is contained in:
Mark Voltov 2024-03-24 15:26:20 +03:00
parent 44ee21414b
commit e86914dba1
24 changed files with 732 additions and 0 deletions

View file

@ -0,0 +1,15 @@
from models.mesh_geometry_coordinate_model import MeshGeometryCoordinateModel
class RenderPrimitiveUseCase(object):
"""Rendering primitives
Args:
object: CAD-model
"""
def call(
self, meshModels: list[MeshGeometryCoordinateModel], detailSquares
) -> None:
for mesh in meshModels:
mesh.initializePrimitivesByCoordinate(detailSquares)