开发:types

This commit is contained in:
ChenX
2023-08-16 15:05:08 +08:00
parent 04506caddf
commit 512fff06e8
626 changed files with 2185 additions and 663 deletions

View File

@@ -7,6 +7,8 @@ import { Polyline } from "../DatabaseServices/Entity/Polyline";
interface IOffsetResult {
index: number;
curve: Curve;
/**偏移距离(仅在局部偏移时提供) */
dist?: number;
sp?: Vector3;
ep?: Vector3;
preCurve?: Curve;
@@ -41,6 +43,7 @@ export declare class OffsetPolyline {
_RetCurves: Polyline[];
_IsClose: boolean;
_OffsetDistSign: number;
_IsTopoOffset: boolean;
constructor(_Polyline: Polyline, _OffsetDist: number, _ToolPath?: boolean, _OffsetDistSq?: number);
Do(): Polyline[];
InitSubCurves(): this;