UNPKG

@bitbybit-dev/occt

Version:

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

14 lines (13 loc) 473 B
import { AssemblyHierarchyNode } from "./assembly-hierarchy-node"; /** * Result from getAssemblyHierarchy. * Provides complete assembly tree traversal with comprehensive node information. */ export interface AssemblyHierarchyResult { /** Schema version (currently "2.0") */ version: string; /** Total number of nodes in the hierarchy */ totalNodes: number; /** All nodes in the assembly, in depth-first order */ nodes: AssemblyHierarchyNode[]; }