vjcad 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +98 -3
- package/dist/vjcad-lib.umd.js +470 -64
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -4343,6 +4343,26 @@ declare function getExtendedEntityPolylineIntersections(extendedEntityCollection
|
|
|
4343
4343
|
*/
|
|
4344
4344
|
declare function getLineIntersections(lineEntity: LineEnt | ILineGeometry, entityArray: (ArcEnt | CircleEnt | EllipseEnt | LineEnt)[]): GLine[];
|
|
4345
4345
|
|
|
4346
|
+
/**
|
|
4347
|
+
* B-spline 拟合点插值算法
|
|
4348
|
+
*
|
|
4349
|
+
* 参考 ODA GeNurbCurve3dImpl::updateNurbsData() 实现
|
|
4350
|
+
* 给定拟合点(曲线必须经过的点),通过全局三次 B-spline 插值
|
|
4351
|
+
* 计算对应的控制点和节点向量,使曲线精确经过所有拟合点。
|
|
4352
|
+
*
|
|
4353
|
+
* 算法流程:
|
|
4354
|
+
* 1. 参数化(chord / sqrtChord / uniform)
|
|
4355
|
+
* 2. 构造开放夹紧节点向量
|
|
4356
|
+
* 3. 组装三对角方程组(B-spline 基函数值 + 端条件)
|
|
4357
|
+
* 4. Thomas 算法求解控制点
|
|
4358
|
+
*/
|
|
4359
|
+
type KnotParameterization = 'chord' | 'sqrtChord' | 'uniform';
|
|
4360
|
+
interface FitPointsOptions {
|
|
4361
|
+
parameterization?: KnotParameterization;
|
|
4362
|
+
startTangent?: [number, number];
|
|
4363
|
+
endTangent?: [number, number];
|
|
4364
|
+
}
|
|
4365
|
+
|
|
4346
4366
|
/**
|
|
4347
4367
|
* 检查是否为类型化数组视图
|
|
4348
4368
|
* @param t - 要检查的对象
|
|
@@ -11406,6 +11426,10 @@ declare class Editor {
|
|
|
11406
11426
|
* 全选
|
|
11407
11427
|
*/
|
|
11408
11428
|
selectAll(): Promise<void>;
|
|
11429
|
+
/**
|
|
11430
|
+
* Invert selection: swap selected and unselected entities
|
|
11431
|
+
*/
|
|
11432
|
+
invertSelection(): void;
|
|
11409
11433
|
/**
|
|
11410
11434
|
* 获取第一个选择集
|
|
11411
11435
|
* @returns 预选择集
|
|
@@ -35799,6 +35823,8 @@ declare class ControlPoint {
|
|
|
35799
35823
|
*/
|
|
35800
35824
|
declare class DbSpline extends DbEntity {
|
|
35801
35825
|
dbControlPoints: DbControlPoints;
|
|
35826
|
+
dbFitPoints?: ControlPoints;
|
|
35827
|
+
dbKnots?: number[];
|
|
35802
35828
|
degree?: number;
|
|
35803
35829
|
isClosed?: boolean;
|
|
35804
35830
|
isPeriodic?: boolean;
|
|
@@ -36126,6 +36152,46 @@ declare class SplineEnt extends EntityBase {
|
|
|
36126
36152
|
* // [[0,0], [100,0], [[100,50], 0.5]]
|
|
36127
36153
|
*/
|
|
36128
36154
|
getControlPointsWithWeight(): ([number, number] | [[number, number], number])[];
|
|
36155
|
+
/**
|
|
36156
|
+
* 设置拟合点(替换现有点)
|
|
36157
|
+
* 曲线将精确经过所有拟合点,内部自动计算控制点和节点向量
|
|
36158
|
+
* @param points 拟合点坐标数组 [[x, y], ...],至少 2 个
|
|
36159
|
+
* @param options 可选参数:参数化方式、起/终切线
|
|
36160
|
+
* @returns this,支持链式调用
|
|
36161
|
+
* @example
|
|
36162
|
+
* spline.setFitPoints([[0, 0], [50, 80], [100, 20], [150, 60]]);
|
|
36163
|
+
* spline.setFitPoints([[0, 0], [100, 50]], { parameterization: 'chord' });
|
|
36164
|
+
*/
|
|
36165
|
+
setFitPoints(points: [number, number][], options?: FitPointsOptions): this;
|
|
36166
|
+
/**
|
|
36167
|
+
* 添加单个拟合点并重新计算曲线
|
|
36168
|
+
* @param coord 坐标 [x, y]
|
|
36169
|
+
* @param options 可选参数
|
|
36170
|
+
* @returns this,支持链式调用
|
|
36171
|
+
* @example
|
|
36172
|
+
* spline.addFitPoint([200, 40]);
|
|
36173
|
+
*/
|
|
36174
|
+
addFitPoint(coord: [number, number], options?: FitPointsOptions): this;
|
|
36175
|
+
/**
|
|
36176
|
+
* 批量添加拟合点并重新计算曲线
|
|
36177
|
+
* @param points 拟合点数组 [[x, y], ...]
|
|
36178
|
+
* @param options 可选参数
|
|
36179
|
+
* @returns this,支持链式调用
|
|
36180
|
+
* @example
|
|
36181
|
+
* spline.addFitPoints([[200, 40], [250, 80]]);
|
|
36182
|
+
*/
|
|
36183
|
+
addFitPoints(points: [number, number][], options?: FitPointsOptions): this;
|
|
36184
|
+
/**
|
|
36185
|
+
* 获取指定索引的拟合点坐标
|
|
36186
|
+
* @param index 索引(0-based)
|
|
36187
|
+
* @returns [x, y] 坐标数组
|
|
36188
|
+
*/
|
|
36189
|
+
getFitPoint(index: number): [number, number];
|
|
36190
|
+
/**
|
|
36191
|
+
* 获取所有拟合点坐标
|
|
36192
|
+
* @returns [[x, y], ...] 坐标数组
|
|
36193
|
+
*/
|
|
36194
|
+
getFitPoints(): [number, number][];
|
|
36129
36195
|
/**
|
|
36130
36196
|
* 镜像操作
|
|
36131
36197
|
* 沿指定轴线镜像样条曲线
|
|
@@ -44711,6 +44777,11 @@ declare class SelectAllCommand {
|
|
|
44711
44777
|
start(): Promise<void>;
|
|
44712
44778
|
}
|
|
44713
44779
|
|
|
44780
|
+
declare class InvertSelectionCommand {
|
|
44781
|
+
main(): Promise<void>;
|
|
44782
|
+
start(): Promise<void>;
|
|
44783
|
+
}
|
|
44784
|
+
|
|
44714
44785
|
declare class SidebarStyLeft {
|
|
44715
44786
|
main(): Promise<void>;
|
|
44716
44787
|
}
|
|
@@ -46362,6 +46433,14 @@ declare class InsertSvgCommand {
|
|
|
46362
46433
|
private mergeToDocument;
|
|
46363
46434
|
}
|
|
46364
46435
|
|
|
46436
|
+
/**
|
|
46437
|
+
* DATABROWSER command - Open document data browser panel
|
|
46438
|
+
*/
|
|
46439
|
+
declare class DataBrowserCommand {
|
|
46440
|
+
main(): Promise<void>;
|
|
46441
|
+
}
|
|
46442
|
+
declare function destroyDataBrowserPanel(): void;
|
|
46443
|
+
|
|
46365
46444
|
/**
|
|
46366
46445
|
* FINDREPLACE 命令 - 打开查找替换面板
|
|
46367
46446
|
*/
|
|
@@ -51345,6 +51424,19 @@ declare class GeometryUtils {
|
|
|
51345
51424
|
* @returns 如果边界框与直线相交返回true
|
|
51346
51425
|
*/
|
|
51347
51426
|
static hitTestBoxToLine(t: Point2D$1, e: Point2D$1, i: Point2D$1, s: Point2D$1): boolean;
|
|
51427
|
+
/**
|
|
51428
|
+
* 检查边界框与线段的碰撞(Liang-Barsky 算法)
|
|
51429
|
+
*
|
|
51430
|
+
* 与 hitTestBoxToLine 不同,此方法测试的是有限长度的线段而非无限直线。
|
|
51431
|
+
* 通过参数化裁剪判断线段是否与矩形相交,对于短线段和退化线段均能正确处理。
|
|
51432
|
+
*
|
|
51433
|
+
* @param segStart - 线段起点
|
|
51434
|
+
* @param segEnd - 线段终点
|
|
51435
|
+
* @param boxMin - 边界框最小点(左下角)
|
|
51436
|
+
* @param boxMax - 边界框最大点(右上角)
|
|
51437
|
+
* @returns 如果线段与边界框相交返回 true
|
|
51438
|
+
*/
|
|
51439
|
+
static hitTestBoxToSegment(segStart: Point2D$1, segEnd: Point2D$1, boxMin: Point2D$1, boxMax: Point2D$1): boolean;
|
|
51348
51440
|
/**
|
|
51349
51441
|
* 检查边界框与圆形的碰撞
|
|
51350
51442
|
*
|
|
@@ -53865,8 +53957,8 @@ declare function hitTestPattern(patternEntity: HatchEnt, testPoint1: Point2D$1,
|
|
|
53865
53957
|
/**
|
|
53866
53958
|
* 样条曲线命中测试函数
|
|
53867
53959
|
* @param {SplineEnt} splineEntity - 样条曲线对象
|
|
53868
|
-
* @param {Point2D} testPoint1 - 测试点1
|
|
53869
|
-
* @param {Point2D} testPoint2 - 测试点2
|
|
53960
|
+
* @param {Point2D} testPoint1 - 测试点1(拾取框最小点)
|
|
53961
|
+
* @param {Point2D} testPoint2 - 测试点2(拾取框最大点)
|
|
53870
53962
|
* @returns {SplineEnt | undefined} 命中的样条曲线对象或undefined
|
|
53871
53963
|
*/
|
|
53872
53964
|
declare function hitTestSpline(splineEntity: SplineEnt, testPoint1: Point2D$1, testPoint2: Point2D$1): SplineEnt | undefined;
|
|
@@ -54761,7 +54853,7 @@ declare const palettePlotIcons: Record<string, string>;
|
|
|
54761
54853
|
|
|
54762
54854
|
//# sourceMappingURL=index.d.ts.map
|
|
54763
54855
|
|
|
54764
|
-
export { ANGLE_0, ANGLE_135, ANGLE_180, ANGLE_225, ANGLE_270, ANGLE_315, ANGLE_360, ANGLE_45, ANGLE_90, ANSI31_PATTERN, ANSI37_PATTERN, AboutCommand, ActiveButton, ActivityBar, ActivityBarElement, AddEntitiesUndoCommand, AdvancedEditMenu, AliasListPalette, AlignedDimensionEnt, AlignmentTextCommand, AngleBlockCommand, AngleDimensionEnt, AngleHatchCommand, AngleTextCommand, AntiAliasSetvar, AppDisableIconSvg, AppIconSvg, AppearanceMenu, ArcCSACommand, ArcCSECommand, ArcCSLCommand, ArcCircleProperties, ArcCommand, ArcDimensionEnt, ArcDrawer, ArcEnt, ArcModifyUndoCommand, ArcSCACommand, ArcSCECommand, ArcSCLCommand, ArcSEACommand, ArcSEDCommand, ArcSERCommand, ArcSymbolType, AreaCalculationCollection, AreaCalculationElement, ArrowRenderer, ArrowTypeEnum, AttributeTextProcessor, AutoComplete, AutoCompleteElement, AutoComplteRow, AutoComplteRowElement, BOOLEAN_OPERATORS, BSplineConstructor, BaseDialogComponent, BaseGraphicsProperties, BaseMessage, BasePanelComponent, BasicEditMenu, BezierEnt, BlockAddUndoCommand, BlockCommand, BlockDefinition, BlockModifyUndoCommand, BlockNameDialog, BlockRedefineUndoCommand, BlockReference, BlockRemoveUndoCommand, BlockSortUndoCommand, Blocks, BlocksPalette, BottomBar, BoundingBox, BoundingBoxCommand, BoxCommand, BoxModifyUndoCommand, BranchCreateDialog, BranchMergeDialog, BucketEntityRenderer, BulgePoint, BulgePoints, BurstTextCommand, ButtonEle, CLayerSetvar, CadDocument, CadEventEmitter, CadEventManager, CadEvents, CadGraphics, CadMapOverlay, CadPatternDef, CanvasController, CeColorSetvar, CenterMarker, ChangeColorCommand, ChangeLTypeCommand, ChangeLTypeScaleCommand, ChangeLayerCommand, ChangeLineWeightCommand, ChangeLineWeightDialog, ChangeTranspCommand, Circle2PCommand, Circle3PCommand, CircleCommand, CircleDiameterCommand, CircleDrawer, CircleEnt, CircleMarker, CircleModifyUndoCommand, CircleTTRCommand, CircleTTTCommand, ClipMode, ClipRegionCommand, ClipboardObj, CloseCommand, CloseXCommand, ColorConverter, ColorDialogOptions, ColorPanelDialog, CommandAlias, CommandAliasManager, CommandDefinition, CommandLine, CommandListPalette, CommandOptions, CommandRegistry, CommandResult, ConflictResolutionDialog, ContextMenu, ContextMenuAction, ContextMenuItem, ContinueDimensionCommand, ControlPoint, ControlPoints, CoordinateAxesDraw, CoordinateSystemIndicatorDraw, CoordinateSystemType, CoordinateTransform, CoordsBar, CoordsPalette, CopyBaseCommand, CopyClipCommand, CopyCommand, CornerInputHandler, CornerInputOptions, CornerSelectionHandler, CountBlockCommand, CountTextCommand, CreateAlignedDimensionCommand, CreateAngleDimensionCommand, CreateArcLengthDimensionCommand, CreateDiametricDimensionCommand, CreateLinearDimensionCommand, CreateMLeaderCommand, CreateMenu, CreateOrdinateDimensionCommand, CreateRadialDimensionCommand, CreateSymbolCommand, CrosshairCursorDraw, CtbPalette, CurrentLayerUndoCommand, CustomEntityBase, CustomEntityRegistry, CutBaseCommand, CutClipCommand, CutRecCommand, DLineCommand, DataToDrawCommand, DbArc, DbBackgroundConfig, DbBlock, DbBlockRef, DbBlocks, DbBox, DbBulgePoint, DbBulgePoints, DbCircle, DbControlPoints, DbDText, DbDimLinear, DbDimStyle, DbDimStyles, DbDoc, DbDocEnv, DbDotEntity, DbEdge, DbEllipse, DbEntity, DbHatch, DbImage, DbImageRef, DbImages, DbLayer, DbLayers, DbLayout, DbLayouts, DbLine, DbMText, DbMesh, DbPadding, DbPixelPoint, DbPline, DbPlotConfig, DbPoint, DbPoint2d, DbRay, DbSolid, DbSpline, DbSplineControlPoint, DbTextStyle, DbTextStyles, DbXline, DefaultDimensionStyle, DialogColors, DiametricDimensionEnt, DiamondMarker, DiffCommand, DimMenu, DimScaleUndoCommand, DimStyleCommand, DimStyleDialog, DimStyleEditDialog, DimensionAngularFormat, DimensionArrowType, DimensionBase, DimensionFitMode, DimensionFormatter, DimensionStyle, DimensionStyles, DimensionTextAlignment, DimensionTextLayout, DimensionTextMovementMode, DimensionTextVerticalPosition, DimensionType, DimensionUnitFormat, DistCommand, DocDropDown, DocDropDownElement, DocEnv, DocumentTabItem, DocumentTabs, Documents, DonutCommand, DotCommand, DotEnt, DrawAdvancedMenu, DrawBezierCurve, DrawMenu, DrawOrderBackCommand, DrawOrderBackUndoCommand, DrawOrderFrontCommand, DrawOrderFrontUndoCommand, DrawSettingsPalette, DrawingBrowserDialog, DrawingBrowserDialogElement, DrawingManagerService, DropEffectComponent, DynamicMenuPanel, EHatchCommand, ENTITY_TYPE_OPTIONS, Edge, EdgeType, Edges, EditMenu, Editor, EllipseCenterCommand, EllipseCommand, EllipseDrawer, EllipseEnt, EmptyCommandAlias, EndPointMarker, EndUndoCommand, Engine, EntityBase, EntityBoundsCalculator, EntityColorUndoCommand, EntityLayerUndoCommand, EntityLineTypeScaleUndoCommand, EntityLineTypeUndoCommand, EntityLineWeightUndoCommand, EntityModifyUndoCommand, EntityPickResult, EntityPicker, EntityReactorManager, EntityRenderer, EntitySelectionSplitter, EntitySelector, EntityStatsCommand, EntityTransparencyUndoCommand, EntityUndoCommand, EntityVisibilityUndoCommand, EraseCommand, EraseEntitiesUndoCommand, ExecuteJsCommand, ExecuteStrCommand, ExplodeCommand, ExportDwgOptionsDialog, ExportToDwgCommand, ExportToPngCommand, ExtendCommand, ExtendedGraphicsProperties, ExtractCenterlineCommand, FileMenuPanel, FilesPalette, FilletCommand, FindReplaceCommand, FindTextService, FitMapViewCommand, FontLoader, FuncButtons, GArc, GBulgePolyline, GCircle, GEllipse, GLine, GPolyline, GeoBounds, GeoPoint, GeoProjection, GeometryCalculator, GeometryUtils, GetInfoCommand, GraphicsBucket, GraphicsBucketManager, GraphicsInfoCommand, GridDisplayDraw, GridModeButton, GripCommand, GripEditor, GripManager, GripMarker, GripUtils, GroupCommand, GroupEnt, HATCH_PATTERN_NAMES, HandleFileDrop, HatchCommand, HatchEnt, HatchLoops, HatchMoveCommand, HatchPatternConfig, HelpMenu, HiddenLineDrawer, HistoryEle, IconCategory, IconRegistry, IdCommand, IdMapping, ImageAdjustCommand, ImageClipCommand, ImageCollection, ImageCommand, ImagePaletteAddCommand, ImagePaletteInsertCommand, ImageRef, ImageRefEnt, ImageRefModifyUndoCommand, ImageSource, ImageSourceAddUndoCommand, ImageSourceRemoveUndoCommand, ImagesPalette, ImportDwgOptionsDialog, ImportFromDwgCommand, Initializer, InputDialog, InputDialogElement, InputNumberDialog, InputResult, InputStatusEnum, InsertCommand, InsertEnt, InsertMenu, InsertSvgCommand, InsertSymbolCommand, InsertionMarker, IntegerInputHandler, IntegerInputOptions, IntegerResult, ItemCollection, JIS_LC_20_PATTERN, JIS_LC_8_PATTERN, JIS_RC_10_PATTERN, JIS_RC_15_PATTERN, JIS_RC_18_PATTERN, JIS_RC_30_PATTERN, JIS_WOOD_PATTERN, JustifyTextCommand, KeywordInputHandler, KeywordInputOptions, KeywordResult, LINE_WEIGHT_VALUES, LTScaleSetvar, LanguageButton, LayAllOffCommand, LayAllOnCommand, LayCurCommand, LayDrawBackCommand, LayDrawFrontCommand, LayMCurCommand, LayPickOffCommand, LayPickOnCommand, LayRevCommand, LaySSOffCommand, LaySSOnCommand, LayTblColorCommand, Layer, LayerAddUndoCommand, LayerAlphaCell, LayerColorCell, LayerCommand, LayerCurrentCell, LayerFrozenCell, LayerLTScaleCell, LayerLinetypeCell, LayerLineweightCell, LayerLockedCell, LayerModifyUndoCommand, LayerNameCell, LayerNameDialog, LayerNameDialogElement, LayerOnCell, LayerPaletteCommand, LayerPlottableCell, LayerReference, LayerRemoveUndoCommand, LayerReverseUndoCommand, LayerSelectionDialog, LayerSortUndoCommand, LayerTransparencyDialog, LayerTransparencyDialogElement, Layers, Layout, Layouts, LeaderDirectionType, LeaderType, LineCommand, LineDrawer, LineEnt, LineModifyUndoCommand, LineTypeDialog, LineTypeDialogElement, LineTypeDialogOptions, LineTypeEnum, LineTypeScaleUndoCommand, LinearCopyCommand, LinearDimensionEnt, LinetypeDefinition, LinetypeEditorDialog, LinetypeElement, LinetypeElementType, LinetypeLoadCommand, LinetypeManager, LinetypeParser, LinetypeViewerDialog, LitElement, LocalDrawingBrowserDialog, LocalDrawingBrowserDialogElement, LocalStorageService, LwDisplayCommand, MLeaderContentType, MLeaderEnt, MTextAttachmentEnum, MTextColor, MTextCommand, MTextContext, MTextEditCommand, MTextEnt, MTextLineAlignment, MTextParagraphAlignment, MTextParser, MTextStroke, MTextToken, MagTextCommand, MainView, MainViewElement, MakeLayerCommand, ManageSymbolCommand, MapOpenWay, MatChPropCommand, MeasureAngleCommand, MeasureMenu, MenuBar, MenuConfig, MenuItem, MenuRegistry, Menus, MeshEnt, MessageBoxComponent, MessageBoxConfig, MidGripMarker, MidPointMarker, MirrorCommand, MirrorEntitiesUndoCommand, ModalDialogBase, ModelessPanelBase, MoveCommand, MoveEntitiesUndoCommand, NUMBER_OPERATORS, NearestMarker, NewCommand, NumberInputComponent, ObservablePoint2D, OffsetCommand, OffsetCurrentCommand, OffsetDefaultCommand, OffsetDeleteCommand, OpenCommand, OpenFromLocalCommand, OpenFromServerCommand, OperationTypeEnum, OrdinateDimensionEnt, OrthoModeButton, OrthoModeSetvar, OsModeSetvar, OsnapButton, OsnapCursor, OsnapMarkerContainer, OtherGraphicsProperties, Padding, PanUndoCommand, PanViewUndoCommand, PanelController, ParallelogramCommand, PasteClipCommand, PathCommandType, PatternEditorDialog, PatternLoadCommand, PatternManager, PatternPickerDialog, PatternViewerDialog, PerformanceMonitor, PerpendicularMarker, PickUtils, PixelPointCommand, PixelPointEnt, PlanCommand, PlanViewUndoCommand, PlineCommand, PlineJoinCommand, PlineWidSetvar, PlotAreaDraw, PlotColorStyle, PlotConfig, PlotStyle, PlotStyles, PluginCacheService, PluginContext, PluginError, PluginLoader, PluginManager, PluginManagerDialog, PluginMarketService, PluginOrigin, PluginSourceType, PluginState, PluginsCommand, Point2D$1 as Point2D, PointAndOsnapResult, PointInputOptions, PointInputResult, PointPrompt, PointerEventManager, PolarCopyCommand, PolarModeButton, PolarTracking, PolygonCommand, PolylineEnt, PolylineModifyUndoCommand, PreviewView, PromptEle, PropertiesCommand, PropertyMenu, PropertyPalette, PurgeBlocksCommand, PurgeCommand, PurgeImageCommand, PurgeInvalidBoundsCommand, PurgeLayerCommand, QBlockCommand, QSaveCommand, QuadrantMarker, QuickSelectCommand, QuickSelectService, RadialDimensionEnt, RayCommmand, RayDCommand, RayEnt, RayLCommand, RayModifyUndoCommand, RayRCommand, RayUCommand, ReactorEvent, ReactorEventBridge, ReactorNotifier, RealInputHandler, RealInputOptions, RealResult, RecentCommandsManager, RectangCommand, RedoCommand, RegenAllCommand, RegenCommand, RenameBlockCommand, RenderConfig, RenderOriginCommand, ReplaceBlockCommand, ResetImageClipCommand, RevcloudCommand, RibbonBar, RibbonButton, RibbonConfigManager, RibbonGroup, RotateCommand, RotateEntitiesUndoCommand, RotationGripMarker, RubberBandLineDraw, SCOPE_OPTIONS, SELECTION_MODE_OPTIONS, SETTINGS_DEFINITIONS, STRING_OPERATORS, SUPPORTED_LOCALES, SaveAsCommand, SaveAsDialogComp, SaveDrawingDialog, SaveDrawingDialogElement, SaveToLocalCommand, SaveToServerCommand, ScaleBarDraw, ScaleCommand, ScaleEntitiesUndoCommand, ScriptExecutor, ScriptParser, SelectAllCommand, SelectionCycler, SelectionInputOptions, SelectionModeEnum, SelectionRectangleDraw, SelectionSetInputOptions, SelectionSetInputResult, ServerMapSelectorDialog, Service, SettingsCacheService, SettingsCommand, SettingsDialog, ShapeDefinition, ShapeLinetypeElement, ShapeManager, ShapeParser, ShapePath, ShapeRenderer, SideBarFrame, SideBarFrameElement, SidePalettes, SidebarPanelManager, SidebarStyBoth, SidebarStyLeft, SidebarStyNone, SidebarStyRight, SidebarStySetvar, SimpleLinetypeElement, SingleEntitySelector, SmartBlockCommand, SnapPoint, SolidCommand, SolidEnt, SpatialIndex, SpatialIndexManager, SplineCommand, SplineControlPoint, SplineControlPoints, SplineEnt, SplineFitPoint, SplineFitPoints, SplineKnots, SplitterController, SquareCursorDraw, SsAlignCommand, SsExtendCommand, SsSliceCommand, SsTrimCommand, StartUndoCommand, StatsCommand, StretchCommand, StretchEntitiesUndoCommand, StretchUndoCommand, StringInputHandler, StringInputOptions, StringResult, SwitchWorkspaceCommand, SystemConstants, SystemMessage, TOLERANCE, TangentMarker, TextAlignmentEnum$1 as TextAlignmentEnum, TextAttachmentType, TextCommand, TextCopyCommand, TextEditCommand, TextEnt, TextGripMarker, TextLinetypeElement, TextModifyUndoCommand, TextProperties, TextRotationMode, TextScanner, TextStyle, TextStyles, ThemeButton, ThreePointAngularDimensionEnt, TileAlphaSetvar, TileCache, TileCalculator, TileEditAreaCommand, TileEditLayerCommand, TileEditLayerDialog, TileMaskAlphaSetvar, TileScheduler, TokenType, ToolBar, ToolMenu, TransparencyManager$1 as TransparencyManager, TrimCommand, TwoLineAngularDimensionEnt, Txt2MTxtCommand, UCSAxesDraw, UcsCommand, UcsUndoCommand, UndoCommand, UndoCommandBase, UndoHistoryPanel, UndoManager, UngroupCommand, ValidateBoundsCommand, ViewMenu, WblockCommand, WebCadCoreService, WebMapOverlayCommand, WebMapTileLayer, WheelZoomUndoCommand, WmsTileLayer, XLineEnt, XTextCommand, XlineCommand, XlineModifyUndoCommand, XxCommand, YesNoDialog, YesNoDialogConfig, YesNoDialogElement, YyCommand, ZeroSuppressionFlags, ZoomExtentsCommand, ZoomFactorSetvar, ZoomViewUndoCommand, actbarIcons, activateSidebarPanel, addTextReplacementRule, applyDecorators, applyTextReplacements, boundsIntersect, buildIndexedString, buttonBarStyles, buttonStyles, calcForceAngle, calculateBoundingBoxFromPoints, calculateDoubleLinePoints, calculateHatchPatternScale, calculateLineIntersections, calculatePerpendicularPoint, calculatePolygonArea, calculateStringWidth, calculateTextOffset, check3DBoundingBoxIntersection, checkGroupIntersection, checkHatchIntersection, checkPatternHatchIntersection, checkPolylineIntersection, checkTextBoundsIntersection, checkboxStyles, clearEntityDirtyFlags, clearTextReplacementRules, closeDoubleLineSegment, collectAllEntities, collectEntityData, colorIndexToName, colorNameToIndex, commandsIcons, commoncss, compareArrays, containerStyles, convertArcToDeviceCoordinates, convertGArcToDeviceCoordinates, convertLineToDeviceCoordinates, convertMatchesToBlocks, convertToFloat64, convertToHexArray, createBSplineWithDomain, createBulgePointsFromEntities, createCancellableEventArgs, createDataTypeAccessor, createDimensionArrow, createDoubleButtCap, createDoubleLineSegment, createDoubleRoundCap, createDoubleSquareCap, createDynamicMenuPanel, createEventArgs, createFloatingToolbar, createIndexAccessor, createNoShadowStyles, createPanel, css, customElementDecorator, darkThemeStyles, darkThemeVarsStr, decodeUnicodeString, decryptFromBase64, defaultContextMenuItems, defaultDocumentTabsConfig, defaultPatternMatchOptions, defaultPropertyOptions, defaultRibbonConfig, degreesToRadians, delay, destroyExtractCenterlinePanel, destroyFindReplacePanel, destroyQuickSelectPanel, destroySmartBlockPanel, destroyWebMapOverlayPanel, detectDataType, dialogBaseStyles, distance, drawFilledRegion, drawPatternFill, drawPolyline, drawSolidFill, encryptToBase64, endUndoMark, entitiesToPolylineVertices, escapeDxfLineEndings, expandArc, extractDefaultExport, extractTables, filterHatchSegments, findIntersections, findLineArcIntersections, findLineCircleIntersections, findPatternMatches, findSubArray, formRowStyles, formatAngleValue, formatDate, formatDimensionValue, formatNumber, formatNumberEx, funcButtonsIcons, generateHatchPatternLines, generateRevcloudBulgePoints, geoBounds, geoPoint, getAllArrowTypes, getAngleBetweenPoints, getArcBoundingBox, getArcCircleIntersections, getArcEntityIntersections, getArcExtExtendedEntityIntersections, getArcExtLineExtIntersections, getArcExtendedEntityIntersections, getArcLineExtIntersections, getArcLineIntersections, getArcLineIntersectionsAlt, getArcLineIntersectionsEx, getArcLineIntersectionsSimple, getArrowTypeName, getCadDialogContainer, getCadViewContainer, getCircleArcIntersectionsFiltered, getCircleCircleIntersections, getCircleEntityIntersections, getCircleEntityIntersectionsSimple, getCircleLineExtIntersections, getCircleLineExtIntersectionsEx, getCircleLineIntersections, getCircleLineIntersectionsAdvanced, getCircleLineIntersectionsSimple, getCirclePolylineIntersections, getComplexLineIntersection, getCorner, getDiffPanel, getDirPath, getDocumentStatusIndicator, getEntity, getEntityAlpha, getEntityBounds, getExtendedEntityPolylineIntersections, getFileExtension, getFileName, getFileNameBase, getFilePath, getFileTypeByExtension, getFonts, getInteger, getKeyword, getLineBoundingBox, getLineCircleIntersections, getLineEntityCollectionIntersections, getLineEntityIntersections, getLineExtArcExtIntersections, getLineExtArcIntersections, getLineExtEntityIntersections, getLineExtEntityIntersectionsEx, getLineExtExtendedEntityIntersections, getLineExtLineExt1Intersections, getLineExtLineExtIntersections, getLineExtLineIntersections, getLineExtendedEntityIntersections, getLineIntersection, getLineIntersections, getLineLineExt1Intersections, getLineLineExtIntersections, getLineLineIntersections, getLineSegmentIntersection, getLocalStorageService, getLocale, getMidPoint, getObjectLineExtLineExt2Intersections, getObjectLineExtLineIntersections, getObjectLineLineExt2Intersections, getOsnapValueFromString, getParameterDomain, getPatternUnitSize, getPoint, getRawObject, getReal, getRecentCommandsManager, getSelections, getServiceHash, getSettingsCacheService, getString, getTableExtractLayers, getTextReplacementRules, getWebCadCoreService, globalShapeManager, hasAnyChildDirty, hasInlineFormattingCodes, hasInvalidChars, headerStyles, hitTestCircle, hitTestEllipse, hitTestGroup, hitTestPattern, hitTestPolyline, hitTestRect, hitTestSpline, html, httpHelper, initCadContainer, initLocale, inputStyles, int2rgb, isAllElementsEqual, isArcType, isArrayOrArrayBufferView, isCircleType, isEllipseType, isEntityInArray, isEntityReactor, isEqual, isGArc, isGCircle, isGEllipse, isGLine, isGreater, isGreaterOrEqual, isHalfWidthChar, isLess, isLessOrEqual, isLineExists, isLineType, isNdArray, isNullOrUndefined, isPointEqual, isPointOnRay, isSupportedLocale, isTextIntersectWithBox, isTypedArrayView, layerDialogIcons, lineWeightToString, loadingStyles, matchLocale, menubarIcons, mergeBoundingBoxes, message, miscIcons, monitorExports, noChange, normalizeAngle, normalizeAngleAlt, normalizeAngleEx, normalizeDegrees, normalizeUndoDescription, nothing, numberToString, offsetLine, onLocaleChange, openMapDarkStyle, openMapLightStyle, osnapIcons, paletteIcons, paletteLayerIcons, palettePlotIcons, panelTitleStyles, parseConfigValue, parseMText, parseMTextToTextObjects, parseNumberToStr, parseTileKey, performanceMonitorInstance, pointInPolygon, polarToCartesian, propertyDecorator, propertyDecoratorFactory, querySelectorDecorator, radiansToDegrees, radioStyles, randInt, readUint16LittleEndian, refreshRemainModelEntities, regen, registerMessages, registerSidebarPanel, removeDuplicatePoints, removeTextReplacementRule, removeTimeStamp, resetToDefaultRules, resultsStyles, rgb2int, rotatePointAroundCenter, rotatePointInPlace, roundToDecimalPlace, safeCustomElementRegistration, scalePointAlongVector, scalePointInPlace, sectionStyles, selectStyles, setLocale, showConfirm, showError, showExportDwgOptionsDialog, showImportDwgOptionsDialog, showInfo, showInputDialog, showPluginManagerDialog, showPrompt, showSelectDialog, showTileEditLayerDialog, showWarningConfirm, sliderStyles, sortEdgeByArea, ssGetFirst, ssSetFirst, startUndoMark, statusStyles, supportsPointerEvents, t, tea, textAlignStringToEnum, tileKey, toPoint2D, transparencyToString, trimWhitespace, unregisterSidebarPanel, unsafeSVGHtml, updateTimeStamp, wrapTextToLines, writeMessage };
|
|
54856
|
+
export { ANGLE_0, ANGLE_135, ANGLE_180, ANGLE_225, ANGLE_270, ANGLE_315, ANGLE_360, ANGLE_45, ANGLE_90, ANSI31_PATTERN, ANSI37_PATTERN, AboutCommand, ActiveButton, ActivityBar, ActivityBarElement, AddEntitiesUndoCommand, AdvancedEditMenu, AliasListPalette, AlignedDimensionEnt, AlignmentTextCommand, AngleBlockCommand, AngleDimensionEnt, AngleHatchCommand, AngleTextCommand, AntiAliasSetvar, AppDisableIconSvg, AppIconSvg, AppearanceMenu, ArcCSACommand, ArcCSECommand, ArcCSLCommand, ArcCircleProperties, ArcCommand, ArcDimensionEnt, ArcDrawer, ArcEnt, ArcModifyUndoCommand, ArcSCACommand, ArcSCECommand, ArcSCLCommand, ArcSEACommand, ArcSEDCommand, ArcSERCommand, ArcSymbolType, AreaCalculationCollection, AreaCalculationElement, ArrowRenderer, ArrowTypeEnum, AttributeTextProcessor, AutoComplete, AutoCompleteElement, AutoComplteRow, AutoComplteRowElement, BOOLEAN_OPERATORS, BSplineConstructor, BaseDialogComponent, BaseGraphicsProperties, BaseMessage, BasePanelComponent, BasicEditMenu, BezierEnt, BlockAddUndoCommand, BlockCommand, BlockDefinition, BlockModifyUndoCommand, BlockNameDialog, BlockRedefineUndoCommand, BlockReference, BlockRemoveUndoCommand, BlockSortUndoCommand, Blocks, BlocksPalette, BottomBar, BoundingBox, BoundingBoxCommand, BoxCommand, BoxModifyUndoCommand, BranchCreateDialog, BranchMergeDialog, BucketEntityRenderer, BulgePoint, BulgePoints, BurstTextCommand, ButtonEle, CLayerSetvar, CadDocument, CadEventEmitter, CadEventManager, CadEvents, CadGraphics, CadMapOverlay, CadPatternDef, CanvasController, CeColorSetvar, CenterMarker, ChangeColorCommand, ChangeLTypeCommand, ChangeLTypeScaleCommand, ChangeLayerCommand, ChangeLineWeightCommand, ChangeLineWeightDialog, ChangeTranspCommand, Circle2PCommand, Circle3PCommand, CircleCommand, CircleDiameterCommand, CircleDrawer, CircleEnt, CircleMarker, CircleModifyUndoCommand, CircleTTRCommand, CircleTTTCommand, ClipMode, ClipRegionCommand, ClipboardObj, CloseCommand, CloseXCommand, ColorConverter, ColorDialogOptions, ColorPanelDialog, CommandAlias, CommandAliasManager, CommandDefinition, CommandLine, CommandListPalette, CommandOptions, CommandRegistry, CommandResult, ConflictResolutionDialog, ContextMenu, ContextMenuAction, ContextMenuItem, ContinueDimensionCommand, ControlPoint, ControlPoints, CoordinateAxesDraw, CoordinateSystemIndicatorDraw, CoordinateSystemType, CoordinateTransform, CoordsBar, CoordsPalette, CopyBaseCommand, CopyClipCommand, CopyCommand, CornerInputHandler, CornerInputOptions, CornerSelectionHandler, CountBlockCommand, CountTextCommand, CreateAlignedDimensionCommand, CreateAngleDimensionCommand, CreateArcLengthDimensionCommand, CreateDiametricDimensionCommand, CreateLinearDimensionCommand, CreateMLeaderCommand, CreateMenu, CreateOrdinateDimensionCommand, CreateRadialDimensionCommand, CreateSymbolCommand, CrosshairCursorDraw, CtbPalette, CurrentLayerUndoCommand, CustomEntityBase, CustomEntityRegistry, CutBaseCommand, CutClipCommand, CutRecCommand, DLineCommand, DataBrowserCommand, DataToDrawCommand, DbArc, DbBackgroundConfig, DbBlock, DbBlockRef, DbBlocks, DbBox, DbBulgePoint, DbBulgePoints, DbCircle, DbControlPoints, DbDText, DbDimLinear, DbDimStyle, DbDimStyles, DbDoc, DbDocEnv, DbDotEntity, DbEdge, DbEllipse, DbEntity, DbHatch, DbImage, DbImageRef, DbImages, DbLayer, DbLayers, DbLayout, DbLayouts, DbLine, DbMText, DbMesh, DbPadding, DbPixelPoint, DbPline, DbPlotConfig, DbPoint, DbPoint2d, DbRay, DbSolid, DbSpline, DbSplineControlPoint, DbTextStyle, DbTextStyles, DbXline, DefaultDimensionStyle, DialogColors, DiametricDimensionEnt, DiamondMarker, DiffCommand, DimMenu, DimScaleUndoCommand, DimStyleCommand, DimStyleDialog, DimStyleEditDialog, DimensionAngularFormat, DimensionArrowType, DimensionBase, DimensionFitMode, DimensionFormatter, DimensionStyle, DimensionStyles, DimensionTextAlignment, DimensionTextLayout, DimensionTextMovementMode, DimensionTextVerticalPosition, DimensionType, DimensionUnitFormat, DistCommand, DocDropDown, DocDropDownElement, DocEnv, DocumentTabItem, DocumentTabs, Documents, DonutCommand, DotCommand, DotEnt, DrawAdvancedMenu, DrawBezierCurve, DrawMenu, DrawOrderBackCommand, DrawOrderBackUndoCommand, DrawOrderFrontCommand, DrawOrderFrontUndoCommand, DrawSettingsPalette, DrawingBrowserDialog, DrawingBrowserDialogElement, DrawingManagerService, DropEffectComponent, DynamicMenuPanel, EHatchCommand, ENTITY_TYPE_OPTIONS, Edge, EdgeType, Edges, EditMenu, Editor, EllipseCenterCommand, EllipseCommand, EllipseDrawer, EllipseEnt, EmptyCommandAlias, EndPointMarker, EndUndoCommand, Engine, EntityBase, EntityBoundsCalculator, EntityColorUndoCommand, EntityLayerUndoCommand, EntityLineTypeScaleUndoCommand, EntityLineTypeUndoCommand, EntityLineWeightUndoCommand, EntityModifyUndoCommand, EntityPickResult, EntityPicker, EntityReactorManager, EntityRenderer, EntitySelectionSplitter, EntitySelector, EntityStatsCommand, EntityTransparencyUndoCommand, EntityUndoCommand, EntityVisibilityUndoCommand, EraseCommand, EraseEntitiesUndoCommand, ExecuteJsCommand, ExecuteStrCommand, ExplodeCommand, ExportDwgOptionsDialog, ExportToDwgCommand, ExportToPngCommand, ExtendCommand, ExtendedGraphicsProperties, ExtractCenterlineCommand, FileMenuPanel, FilesPalette, FilletCommand, FindReplaceCommand, FindTextService, FitMapViewCommand, FontLoader, FuncButtons, GArc, GBulgePolyline, GCircle, GEllipse, GLine, GPolyline, GeoBounds, GeoPoint, GeoProjection, GeometryCalculator, GeometryUtils, GetInfoCommand, GraphicsBucket, GraphicsBucketManager, GraphicsInfoCommand, GridDisplayDraw, GridModeButton, GripCommand, GripEditor, GripManager, GripMarker, GripUtils, GroupCommand, GroupEnt, HATCH_PATTERN_NAMES, HandleFileDrop, HatchCommand, HatchEnt, HatchLoops, HatchMoveCommand, HatchPatternConfig, HelpMenu, HiddenLineDrawer, HistoryEle, IconCategory, IconRegistry, IdCommand, IdMapping, ImageAdjustCommand, ImageClipCommand, ImageCollection, ImageCommand, ImagePaletteAddCommand, ImagePaletteInsertCommand, ImageRef, ImageRefEnt, ImageRefModifyUndoCommand, ImageSource, ImageSourceAddUndoCommand, ImageSourceRemoveUndoCommand, ImagesPalette, ImportDwgOptionsDialog, ImportFromDwgCommand, Initializer, InputDialog, InputDialogElement, InputNumberDialog, InputResult, InputStatusEnum, InsertCommand, InsertEnt, InsertMenu, InsertSvgCommand, InsertSymbolCommand, InsertionMarker, IntegerInputHandler, IntegerInputOptions, IntegerResult, InvertSelectionCommand, ItemCollection, JIS_LC_20_PATTERN, JIS_LC_8_PATTERN, JIS_RC_10_PATTERN, JIS_RC_15_PATTERN, JIS_RC_18_PATTERN, JIS_RC_30_PATTERN, JIS_WOOD_PATTERN, JustifyTextCommand, KeywordInputHandler, KeywordInputOptions, KeywordResult, LINE_WEIGHT_VALUES, LTScaleSetvar, LanguageButton, LayAllOffCommand, LayAllOnCommand, LayCurCommand, LayDrawBackCommand, LayDrawFrontCommand, LayMCurCommand, LayPickOffCommand, LayPickOnCommand, LayRevCommand, LaySSOffCommand, LaySSOnCommand, LayTblColorCommand, Layer, LayerAddUndoCommand, LayerAlphaCell, LayerColorCell, LayerCommand, LayerCurrentCell, LayerFrozenCell, LayerLTScaleCell, LayerLinetypeCell, LayerLineweightCell, LayerLockedCell, LayerModifyUndoCommand, LayerNameCell, LayerNameDialog, LayerNameDialogElement, LayerOnCell, LayerPaletteCommand, LayerPlottableCell, LayerReference, LayerRemoveUndoCommand, LayerReverseUndoCommand, LayerSelectionDialog, LayerSortUndoCommand, LayerTransparencyDialog, LayerTransparencyDialogElement, Layers, Layout, Layouts, LeaderDirectionType, LeaderType, LineCommand, LineDrawer, LineEnt, LineModifyUndoCommand, LineTypeDialog, LineTypeDialogElement, LineTypeDialogOptions, LineTypeEnum, LineTypeScaleUndoCommand, LinearCopyCommand, LinearDimensionEnt, LinetypeDefinition, LinetypeEditorDialog, LinetypeElement, LinetypeElementType, LinetypeLoadCommand, LinetypeManager, LinetypeParser, LinetypeViewerDialog, LitElement, LocalDrawingBrowserDialog, LocalDrawingBrowserDialogElement, LocalStorageService, LwDisplayCommand, MLeaderContentType, MLeaderEnt, MTextAttachmentEnum, MTextColor, MTextCommand, MTextContext, MTextEditCommand, MTextEnt, MTextLineAlignment, MTextParagraphAlignment, MTextParser, MTextStroke, MTextToken, MagTextCommand, MainView, MainViewElement, MakeLayerCommand, ManageSymbolCommand, MapOpenWay, MatChPropCommand, MeasureAngleCommand, MeasureMenu, MenuBar, MenuConfig, MenuItem, MenuRegistry, Menus, MeshEnt, MessageBoxComponent, MessageBoxConfig, MidGripMarker, MidPointMarker, MirrorCommand, MirrorEntitiesUndoCommand, ModalDialogBase, ModelessPanelBase, MoveCommand, MoveEntitiesUndoCommand, NUMBER_OPERATORS, NearestMarker, NewCommand, NumberInputComponent, ObservablePoint2D, OffsetCommand, OffsetCurrentCommand, OffsetDefaultCommand, OffsetDeleteCommand, OpenCommand, OpenFromLocalCommand, OpenFromServerCommand, OperationTypeEnum, OrdinateDimensionEnt, OrthoModeButton, OrthoModeSetvar, OsModeSetvar, OsnapButton, OsnapCursor, OsnapMarkerContainer, OtherGraphicsProperties, Padding, PanUndoCommand, PanViewUndoCommand, PanelController, ParallelogramCommand, PasteClipCommand, PathCommandType, PatternEditorDialog, PatternLoadCommand, PatternManager, PatternPickerDialog, PatternViewerDialog, PerformanceMonitor, PerpendicularMarker, PickUtils, PixelPointCommand, PixelPointEnt, PlanCommand, PlanViewUndoCommand, PlineCommand, PlineJoinCommand, PlineWidSetvar, PlotAreaDraw, PlotColorStyle, PlotConfig, PlotStyle, PlotStyles, PluginCacheService, PluginContext, PluginError, PluginLoader, PluginManager, PluginManagerDialog, PluginMarketService, PluginOrigin, PluginSourceType, PluginState, PluginsCommand, Point2D$1 as Point2D, PointAndOsnapResult, PointInputOptions, PointInputResult, PointPrompt, PointerEventManager, PolarCopyCommand, PolarModeButton, PolarTracking, PolygonCommand, PolylineEnt, PolylineModifyUndoCommand, PreviewView, PromptEle, PropertiesCommand, PropertyMenu, PropertyPalette, PurgeBlocksCommand, PurgeCommand, PurgeImageCommand, PurgeInvalidBoundsCommand, PurgeLayerCommand, QBlockCommand, QSaveCommand, QuadrantMarker, QuickSelectCommand, QuickSelectService, RadialDimensionEnt, RayCommmand, RayDCommand, RayEnt, RayLCommand, RayModifyUndoCommand, RayRCommand, RayUCommand, ReactorEvent, ReactorEventBridge, ReactorNotifier, RealInputHandler, RealInputOptions, RealResult, RecentCommandsManager, RectangCommand, RedoCommand, RegenAllCommand, RegenCommand, RenameBlockCommand, RenderConfig, RenderOriginCommand, ReplaceBlockCommand, ResetImageClipCommand, RevcloudCommand, RibbonBar, RibbonButton, RibbonConfigManager, RibbonGroup, RotateCommand, RotateEntitiesUndoCommand, RotationGripMarker, RubberBandLineDraw, SCOPE_OPTIONS, SELECTION_MODE_OPTIONS, SETTINGS_DEFINITIONS, STRING_OPERATORS, SUPPORTED_LOCALES, SaveAsCommand, SaveAsDialogComp, SaveDrawingDialog, SaveDrawingDialogElement, SaveToLocalCommand, SaveToServerCommand, ScaleBarDraw, ScaleCommand, ScaleEntitiesUndoCommand, ScriptExecutor, ScriptParser, SelectAllCommand, SelectionCycler, SelectionInputOptions, SelectionModeEnum, SelectionRectangleDraw, SelectionSetInputOptions, SelectionSetInputResult, ServerMapSelectorDialog, Service, SettingsCacheService, SettingsCommand, SettingsDialog, ShapeDefinition, ShapeLinetypeElement, ShapeManager, ShapeParser, ShapePath, ShapeRenderer, SideBarFrame, SideBarFrameElement, SidePalettes, SidebarPanelManager, SidebarStyBoth, SidebarStyLeft, SidebarStyNone, SidebarStyRight, SidebarStySetvar, SimpleLinetypeElement, SingleEntitySelector, SmartBlockCommand, SnapPoint, SolidCommand, SolidEnt, SpatialIndex, SpatialIndexManager, SplineCommand, SplineControlPoint, SplineControlPoints, SplineEnt, SplineFitPoint, SplineFitPoints, SplineKnots, SplitterController, SquareCursorDraw, SsAlignCommand, SsExtendCommand, SsSliceCommand, SsTrimCommand, StartUndoCommand, StatsCommand, StretchCommand, StretchEntitiesUndoCommand, StretchUndoCommand, StringInputHandler, StringInputOptions, StringResult, SwitchWorkspaceCommand, SystemConstants, SystemMessage, TOLERANCE, TangentMarker, TextAlignmentEnum$1 as TextAlignmentEnum, TextAttachmentType, TextCommand, TextCopyCommand, TextEditCommand, TextEnt, TextGripMarker, TextLinetypeElement, TextModifyUndoCommand, TextProperties, TextRotationMode, TextScanner, TextStyle, TextStyles, ThemeButton, ThreePointAngularDimensionEnt, TileAlphaSetvar, TileCache, TileCalculator, TileEditAreaCommand, TileEditLayerCommand, TileEditLayerDialog, TileMaskAlphaSetvar, TileScheduler, TokenType, ToolBar, ToolMenu, TransparencyManager$1 as TransparencyManager, TrimCommand, TwoLineAngularDimensionEnt, Txt2MTxtCommand, UCSAxesDraw, UcsCommand, UcsUndoCommand, UndoCommand, UndoCommandBase, UndoHistoryPanel, UndoManager, UngroupCommand, ValidateBoundsCommand, ViewMenu, WblockCommand, WebCadCoreService, WebMapOverlayCommand, WebMapTileLayer, WheelZoomUndoCommand, WmsTileLayer, XLineEnt, XTextCommand, XlineCommand, XlineModifyUndoCommand, XxCommand, YesNoDialog, YesNoDialogConfig, YesNoDialogElement, YyCommand, ZeroSuppressionFlags, ZoomExtentsCommand, ZoomFactorSetvar, ZoomViewUndoCommand, actbarIcons, activateSidebarPanel, addTextReplacementRule, applyDecorators, applyTextReplacements, boundsIntersect, buildIndexedString, buttonBarStyles, buttonStyles, calcForceAngle, calculateBoundingBoxFromPoints, calculateDoubleLinePoints, calculateHatchPatternScale, calculateLineIntersections, calculatePerpendicularPoint, calculatePolygonArea, calculateStringWidth, calculateTextOffset, check3DBoundingBoxIntersection, checkGroupIntersection, checkHatchIntersection, checkPatternHatchIntersection, checkPolylineIntersection, checkTextBoundsIntersection, checkboxStyles, clearEntityDirtyFlags, clearTextReplacementRules, closeDoubleLineSegment, collectAllEntities, collectEntityData, colorIndexToName, colorNameToIndex, commandsIcons, commoncss, compareArrays, containerStyles, convertArcToDeviceCoordinates, convertGArcToDeviceCoordinates, convertLineToDeviceCoordinates, convertMatchesToBlocks, convertToFloat64, convertToHexArray, createBSplineWithDomain, createBulgePointsFromEntities, createCancellableEventArgs, createDataTypeAccessor, createDimensionArrow, createDoubleButtCap, createDoubleLineSegment, createDoubleRoundCap, createDoubleSquareCap, createDynamicMenuPanel, createEventArgs, createFloatingToolbar, createIndexAccessor, createNoShadowStyles, createPanel, css, customElementDecorator, darkThemeStyles, darkThemeVarsStr, decodeUnicodeString, decryptFromBase64, defaultContextMenuItems, defaultDocumentTabsConfig, defaultPatternMatchOptions, defaultPropertyOptions, defaultRibbonConfig, degreesToRadians, delay, destroyDataBrowserPanel, destroyExtractCenterlinePanel, destroyFindReplacePanel, destroyQuickSelectPanel, destroySmartBlockPanel, destroyWebMapOverlayPanel, detectDataType, dialogBaseStyles, distance, drawFilledRegion, drawPatternFill, drawPolyline, drawSolidFill, encryptToBase64, endUndoMark, entitiesToPolylineVertices, escapeDxfLineEndings, expandArc, extractDefaultExport, extractTables, filterHatchSegments, findIntersections, findLineArcIntersections, findLineCircleIntersections, findPatternMatches, findSubArray, formRowStyles, formatAngleValue, formatDate, formatDimensionValue, formatNumber, formatNumberEx, funcButtonsIcons, generateHatchPatternLines, generateRevcloudBulgePoints, geoBounds, geoPoint, getAllArrowTypes, getAngleBetweenPoints, getArcBoundingBox, getArcCircleIntersections, getArcEntityIntersections, getArcExtExtendedEntityIntersections, getArcExtLineExtIntersections, getArcExtendedEntityIntersections, getArcLineExtIntersections, getArcLineIntersections, getArcLineIntersectionsAlt, getArcLineIntersectionsEx, getArcLineIntersectionsSimple, getArrowTypeName, getCadDialogContainer, getCadViewContainer, getCircleArcIntersectionsFiltered, getCircleCircleIntersections, getCircleEntityIntersections, getCircleEntityIntersectionsSimple, getCircleLineExtIntersections, getCircleLineExtIntersectionsEx, getCircleLineIntersections, getCircleLineIntersectionsAdvanced, getCircleLineIntersectionsSimple, getCirclePolylineIntersections, getComplexLineIntersection, getCorner, getDiffPanel, getDirPath, getDocumentStatusIndicator, getEntity, getEntityAlpha, getEntityBounds, getExtendedEntityPolylineIntersections, getFileExtension, getFileName, getFileNameBase, getFilePath, getFileTypeByExtension, getFonts, getInteger, getKeyword, getLineBoundingBox, getLineCircleIntersections, getLineEntityCollectionIntersections, getLineEntityIntersections, getLineExtArcExtIntersections, getLineExtArcIntersections, getLineExtEntityIntersections, getLineExtEntityIntersectionsEx, getLineExtExtendedEntityIntersections, getLineExtLineExt1Intersections, getLineExtLineExtIntersections, getLineExtLineIntersections, getLineExtendedEntityIntersections, getLineIntersection, getLineIntersections, getLineLineExt1Intersections, getLineLineExtIntersections, getLineLineIntersections, getLineSegmentIntersection, getLocalStorageService, getLocale, getMidPoint, getObjectLineExtLineExt2Intersections, getObjectLineExtLineIntersections, getObjectLineLineExt2Intersections, getOsnapValueFromString, getParameterDomain, getPatternUnitSize, getPoint, getRawObject, getReal, getRecentCommandsManager, getSelections, getServiceHash, getSettingsCacheService, getString, getTableExtractLayers, getTextReplacementRules, getWebCadCoreService, globalShapeManager, hasAnyChildDirty, hasInlineFormattingCodes, hasInvalidChars, headerStyles, hitTestCircle, hitTestEllipse, hitTestGroup, hitTestPattern, hitTestPolyline, hitTestRect, hitTestSpline, html, httpHelper, initCadContainer, initLocale, inputStyles, int2rgb, isAllElementsEqual, isArcType, isArrayOrArrayBufferView, isCircleType, isEllipseType, isEntityInArray, isEntityReactor, isEqual, isGArc, isGCircle, isGEllipse, isGLine, isGreater, isGreaterOrEqual, isHalfWidthChar, isLess, isLessOrEqual, isLineExists, isLineType, isNdArray, isNullOrUndefined, isPointEqual, isPointOnRay, isSupportedLocale, isTextIntersectWithBox, isTypedArrayView, layerDialogIcons, lineWeightToString, loadingStyles, matchLocale, menubarIcons, mergeBoundingBoxes, message, miscIcons, monitorExports, noChange, normalizeAngle, normalizeAngleAlt, normalizeAngleEx, normalizeDegrees, normalizeUndoDescription, nothing, numberToString, offsetLine, onLocaleChange, openMapDarkStyle, openMapLightStyle, osnapIcons, paletteIcons, paletteLayerIcons, palettePlotIcons, panelTitleStyles, parseConfigValue, parseMText, parseMTextToTextObjects, parseNumberToStr, parseTileKey, performanceMonitorInstance, pointInPolygon, polarToCartesian, propertyDecorator, propertyDecoratorFactory, querySelectorDecorator, radiansToDegrees, radioStyles, randInt, readUint16LittleEndian, refreshRemainModelEntities, regen, registerMessages, registerSidebarPanel, removeDuplicatePoints, removeTextReplacementRule, removeTimeStamp, resetToDefaultRules, resultsStyles, rgb2int, rotatePointAroundCenter, rotatePointInPlace, roundToDecimalPlace, safeCustomElementRegistration, scalePointAlongVector, scalePointInPlace, sectionStyles, selectStyles, setLocale, showConfirm, showError, showExportDwgOptionsDialog, showImportDwgOptionsDialog, showInfo, showInputDialog, showPluginManagerDialog, showPrompt, showSelectDialog, showTileEditLayerDialog, showWarningConfirm, sliderStyles, sortEdgeByArea, ssGetFirst, ssSetFirst, startUndoMark, statusStyles, supportsPointerEvents, t, tea, textAlignStringToEnum, tileKey, toPoint2D, transparencyToString, trimWhitespace, unregisterSidebarPanel, unsafeSVGHtml, updateTimeStamp, wrapTextToLines, writeMessage };
|
|
54765
54857
|
export type { AddMenuDefinition, AddRibbonTabDefinition, AlignedDimensionData, AngleDimensionData, AngularFormatConfig, ArcDimensionData, ArrowRenderConfig, ArrowRenderResult, ArrowType, BlockAddedEventArgs, BlockAddingEventArgs, BlockDeletedEventArgs, BlockDeletingEventArgs, BlockModifiedEventArgs, BooleanOperator, BranchCreatedEventArgs, BranchCreatingEventArgs, BranchDeletedEventArgs, BranchDeletingEventArgs, BranchInfo, BranchMergedEventArgs, BranchMergingEventArgs, BranchSwitchedEventArgs, BranchSwitchingEventArgs, CadBoundsLike, CadEventArgs, CadMapOverlayOptions, CancellableEventArgs, CommandCancelledEventArgs, CommandClass, CommandEndedEventArgs, CommandStartedEventArgs, CommandStartingEventArgs, Config, ConflictDetectedEventArgs, ConflictItem, ConflictResolution, ConflictResolvedEventArgs, ConflictResolvingEventArgs, ConflictSkippedEventArgs, ConflictType, ContextMenuItemClickedEventArgs, ContextMenuItemInfo, ContextMenuOpenedEventArgs, ContextMenuOpeningEventArgs, ConvertToBlockOptions, CurrentLayerChangedEventArgs, CustomEntityDbData, DiametricDimensionData, DiffPanel, DimStyleDialogResult, DimStyleEditResult, DimensionBaseData, DimensionStyleData, DocumentCacheClearedEventArgs, DocumentCachedEventArgs, DocumentCachingEventArgs, DocumentClosedEventArgs, DocumentClosingEventArgs, DocumentCreatedEventArgs, DocumentCreatingEventArgs, DocumentDownloadedEventArgs, DocumentDownloadingEventArgs, DocumentModifiedEventArgs, DocumentOpenedEventArgs, DocumentOpeningEventArgs, DocumentRestoredEventArgs, DocumentRestoringEventArgs, DocumentSavedEventArgs, DocumentSavingEventArgs, DocumentStorageSource, DocumentSwitchedEventArgs, DocumentSyncStatusChangedEventArgs, DocumentTabsConfig, DocumentUploadedEventArgs, DocumentUploadingEventArgs, DoubleLinePoints, DoubleLineSegment, EntitiesAddedEventArgs, EntitiesAddingEventArgs, EntitiesErasedEventArgs, EntitiesErasingEventArgs, EntityAddedEventArgs, EntityAddingEventArgs, EntityErasedEventArgs, EntityErasingEventArgs, EntityModifiedEventArgs, EntityOperationOptions, EntityTypeFilter, EntityTypeOption, EventArgsMap, EventHandler, FillLoopBounds, FillLoopData, FilterCondition, FindOptions, FindResult, FitDecision, FloatingToolbarItem, FloatingToolbarManager, FloatingToolbarOptions, FontInfo, FormatConfig, GBulgePoint, GeoPointLike, GestureState, GestureType, GraphicsBucketManagerConfig, GraphicsPrimitiveStats, GripPointResult, GripPointType, IAdminEditPolicy, IAllDrawingsResponse, IBranchCreateDialogConfig, IBranchCreateDialogResult, IBranchInfo, IBranchMergeDialogConfig, IBranchMergeDialogResult, IBranchSourceInfo, IComposeNewMap, IConditionQueryFeatures, IConflictEntityInfo, IConflictItem, IConflictLayerInfo, IConflictResolutionConfig, IConflictResolutionResult, ICreateBranchParams, ICreateBranchResponse, ICreateEntitiesGeomData, ICreateSymbolParams, IDeleteBranchParams, IDeleteBranchResponse, IDeleteCache, IDeleteStyle, IDeleteWebcadDrawParams, IDeleteWebcadDrawResponse, IDrawingBrowserResult, IEditArea, IEditAreaBounds, IEditAreaRecord, IEntityReactor, IEntityResolution, IExportDwgOptions, IExportDwgOptionsResult, IExportLayout, IExportToDwgDialogConfig, IExportToDwgParams, IExportWebcadParams, IExportWebcadResponse, IExprQueryFeatures, IExtractTable, IGetWebcadDataParams, IGetWebcadDataResponse, IImportDwgOptions, IImportDwgOptionsResult, ILayerInfo, IListWebcadDrawsParams, IListWebcadDrawsResponse, ILoadEditAreaResult, ILoadEditAreasResult, ILoadEditLayersResult, ILocalDrawingBrowserResult, ILocalDrawingListItem, ILocalDrawingRecord, ILocalSymbolCategory, ILocalSymbolRecord, IMapDiff, IMapLayer, IMapStyleParam, IMatchObject, IMergeBranchParams, IMergeBranchResponse, IOpenDrawingParams, IOpenDrawingResult, IOpenMapBaseParam, IOpenMapParam, IOpenMapResponse, IPatchInfo, IPluginContext, IPointQueryFeatures, IQueryBaseFeatures, IRectQueryFeatures, IRequest, ISaveDrawingDialogConfig, ISaveDrawingDialogResult, ISaveDrawingParams, ISaveWebcadPatchParams, ISaveWebcadPatchResponse, IServerMapInfo, IServerMapSelectResult, IServerMapVersion, ISliceCacheZoom, ISliceLayer, ISplitChildMaps, ISymbol, ISymbolCategory, ISymbolConfig, ISymbolListQuery, ISymbolListResult, ISymbolMeta, ITileEditLayerDialogConfig, ITileEditLayerDialogResult, ITileUrlParam, IUpdateMapParam, IUpdateStyle, IUpdateSymbolParams, IUploadMapResult, IVcadEditArea, IVcadMeta, IWebcadDrawInfo, IWmsTileUrl, IWorkspace, IconInfo, IconRegistryOptions, InitializerOptions, InputDialogConfig, InputDialogResult$1 as InputDialogResult, LayerAddedEventArgs, LayerAddingEventArgs, LayerCreateOptions, LayerDeletedEventArgs, LayerDeletingEventArgs, LayerModifiedEventArgs, LeaderData, LeaderLineData, LineSegmentInfo, LineType, LinearDimensionData, Locale, MLeaderData, MainViewConfig, MarketplacePluginInfo, MatchTransform, MenuBarCustomConfig, MenuConfig2, MenuDefinition, MenuItemConfig, MenuItemDef, MenuItemOptions, MenuModification, ModalDialogOptions, NumberOperator, OpenModeType, OpenWayType, OperationType, Operator, OperatorOption, OrdinateDimensionData, OrdinateDisplayMode, OsnapInfo, OwnerReference, PanelManager, PanelPosition, ParsedLine, PatchAppliedEventArgs, PatchApplyingEventArgs, PatchCreatedEventArgs, PatchCreatingEventArgs, PatchInfo, PatchRevertedEventArgs, PatchRevertingEventArgs, PathCommand, PatternMatchOptions, PatternMatchOutput, PatternMatchResult, PatternMatchTolerance, PatternToleranceConfig, Plugin, PluginActivatedEventArgs, PluginActivatingEventArgs, PluginCacheEntry, PluginConfig, PluginDeactivatedEventArgs, PluginDeactivatingEventArgs, PluginErrorEventArgs, PluginInfo, PluginInstance, PluginLoadOptions, PluginLoadResult, PluginLoadedEventArgs, PluginLoadingEventArgs, PluginManifest, PluginMarketResponse, PluginSource, PluginUnloadedEventArgs, PluginUnloadingEventArgs, PointInput, PointerInfo, PointerType, PreFilterOptions, PreviewViewConfig, PropertyDefinition, PropertyInfo, PropertyType, QuickSelectResult, RadialDimensionData, ReactorEventArgs, ReactorRelationData, RecentCommand, Response, RevcloudOptions, RibbonButtonConfig, RibbonButtonType, RibbonConfig, RibbonCustomConfig, RibbonGroupConfig, RibbonGroupDisplayMode, RibbonGroupModification, RibbonTabConfig, RibbonTabModification, ScopeOption, ScriptContext, SearchScope, SelectDialogConfig, SelectionChangedEventArgs, SelectionClearedEventArgs, SelectionMode, SelectionModeOption, SettingDefinition, SettingOption, SettingValueType, SettingsDialogResult, Point2D as ShapePoint2D, ShapeRenderOptions, SidebarPanelConfig, SnapPointResult, SnapPointType, StringOperator, SubGeometry, SyncStatus, TabContextMenuItem, TableAttr, TableData, TableExtractInput, TableExtractOptions, TableExtractParams, TableExtractResult, TableItemData, TapConfig, TemplateResult, TextAlignment, TextLayoutResult, TextPositionConfig, ThreePointAngularDimensionData, TileCoord, TileDebugInfo, TileRequest, TileSchedulerEvents, TileSprite, TileState, TileUpdateParams, ToleranceConfig, TranslationMessages, TwoLineAngularDimensionData, UndoCategory, UndoDescriptionInput, UndoDescriptor, UndoHistoryItem, UndoStackChangedEventArgs, View3DMode, ViewPannedEventArgs, ViewRegeneratedEventArgs, ViewZoomedEventArgs, WebMapTileConfig, WmsTileConfig, YesNoDialogResult, YesNoDialogType };
|
|
54766
54858
|
|
|
54767
54859
|
// ============================================
|
|
@@ -54945,6 +55037,7 @@ interface VjcadModule {
|
|
|
54945
55037
|
CutClipCommand: typeof CutClipCommand;
|
|
54946
55038
|
CutRecCommand: typeof CutRecCommand;
|
|
54947
55039
|
DLineCommand: typeof DLineCommand;
|
|
55040
|
+
DataBrowserCommand: typeof DataBrowserCommand;
|
|
54948
55041
|
DataToDrawCommand: typeof DataToDrawCommand;
|
|
54949
55042
|
DbArc: typeof DbArc;
|
|
54950
55043
|
DbBackgroundConfig: typeof DbBackgroundConfig;
|
|
@@ -55156,6 +55249,7 @@ interface VjcadModule {
|
|
|
55156
55249
|
IntegerInputHandler: typeof IntegerInputHandler;
|
|
55157
55250
|
IntegerInputOptions: typeof IntegerInputOptions;
|
|
55158
55251
|
IntegerResult: typeof IntegerResult;
|
|
55252
|
+
InvertSelectionCommand: typeof InvertSelectionCommand;
|
|
55159
55253
|
ItemCollection: typeof ItemCollection;
|
|
55160
55254
|
JIS_LC_20_PATTERN: typeof JIS_LC_20_PATTERN;
|
|
55161
55255
|
JIS_LC_8_PATTERN: typeof JIS_LC_8_PATTERN;
|
|
@@ -55601,6 +55695,7 @@ interface VjcadModule {
|
|
|
55601
55695
|
defaultRibbonConfig: typeof defaultRibbonConfig;
|
|
55602
55696
|
degreesToRadians: typeof degreesToRadians;
|
|
55603
55697
|
delay: typeof delay;
|
|
55698
|
+
destroyDataBrowserPanel: typeof destroyDataBrowserPanel;
|
|
55604
55699
|
destroyExtractCenterlinePanel: typeof destroyExtractCenterlinePanel;
|
|
55605
55700
|
destroyFindReplacePanel: typeof destroyFindReplacePanel;
|
|
55606
55701
|
destroyQuickSelectPanel: typeof destroyQuickSelectPanel;
|