mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-27 10:55:56 +01:00
14 lines
380 B
TypeScript
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;
|