UNPKG

@bitbybit-dev/occt

Version:

Bit By Bit Developers CAD algorithms using OpenCascade Technology kernel. Run in Node and in Browser.

16 lines (15 loc) 434 B
import { Base } from "../../inputs"; /** * Part definition for assembly structure. * Represents a shape that can be instanced multiple times. */ export interface AssemblyPartDef<T> { /** Unique identifier for referencing this part */ id: string; /** The shape for this part */ shape: T; /** Display name for the part */ name: string; /** Optional color for the part */ colorRgba?: Base.ColorRGBA; }