gs-json
Version:
gs-JSON is a domain agnostic unifying 3D file format for geometric and semantic modelling (hence the 'gs').
9 lines (8 loc) • 331 B
TypeScript
import { IRay, IPlane, ICircle, IEllipse, IPolyline, IPolymesh } from "./ifaces_gs";
import { Kernel } from "./kernel";
/**
* A function to cast obj class to subclass.
* @param
* @return
*/
export declare function _castToObjType(_kernel: Kernel, id: number): IRay | IPlane | ICircle | IEllipse | IPolyline | IPolymesh;