jsketcher/modules/occ/occ.d.ts
2022-06-25 15:19:47 -07:00

14 lines
380 B
TypeScript

import {vectorTo_gp_Pnt} from "occ/occAdapters";
export interface OCC_Handle<T> {
get(): T;
}
export type OCC_Geom_TrimmedCurve = any;
export type OCC_Geom_Curve = any;
export type OCC_gp_Pnt = any;
export type OCC_gp_Vector = any;
export type OCC_TopoDS_Shape = any;
export type OCC_TopoDS_Edge = any;
export type OCC_TopoDS_Face = any;
export type OCC_ListOfShapes = any;