ASP refactoring, sequence generation via clusterization
This commit is contained in:
parent
d2ab856d64
commit
fd59ab9e26
45 changed files with 1579 additions and 1267 deletions
|
@ -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)
|
Loading…
Add table
Add a link
Reference in a new issue