vjcad 1.0.4 → 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 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 预选择集
@@ -13283,6 +13307,7 @@ declare class SpatialIndexManager {
13283
13307
  * 检查索引是否启用
13284
13308
  */
13285
13309
  get enabled(): boolean;
13310
+ private isValidBounds;
13286
13311
  /**
13287
13312
  * 将实体转换为索引项
13288
13313
  * @param entity - 实体对象
@@ -35798,6 +35823,8 @@ declare class ControlPoint {
35798
35823
  */
35799
35824
  declare class DbSpline extends DbEntity {
35800
35825
  dbControlPoints: DbControlPoints;
35826
+ dbFitPoints?: ControlPoints;
35827
+ dbKnots?: number[];
35801
35828
  degree?: number;
35802
35829
  isClosed?: boolean;
35803
35830
  isPeriodic?: boolean;
@@ -36125,6 +36152,46 @@ declare class SplineEnt extends EntityBase {
36125
36152
  * // [[0,0], [100,0], [[100,50], 0.5]]
36126
36153
  */
36127
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][];
36128
36195
  /**
36129
36196
  * 镜像操作
36130
36197
  * 沿指定轴线镜像样条曲线
@@ -44425,6 +44492,9 @@ declare class PurgeImageCommand {
44425
44492
  declare class PurgeLayerCommand {
44426
44493
  main(): Promise<void>;
44427
44494
  }
44495
+ declare class PurgeInvalidBoundsCommand {
44496
+ main(): Promise<void>;
44497
+ }
44428
44498
  declare class PurgeCommand {
44429
44499
  main(): Promise<void>;
44430
44500
  start(): Promise<void>;
@@ -44707,6 +44777,11 @@ declare class SelectAllCommand {
44707
44777
  start(): Promise<void>;
44708
44778
  }
44709
44779
 
44780
+ declare class InvertSelectionCommand {
44781
+ main(): Promise<void>;
44782
+ start(): Promise<void>;
44783
+ }
44784
+
44710
44785
  declare class SidebarStyLeft {
44711
44786
  main(): Promise<void>;
44712
44787
  }
@@ -46358,6 +46433,14 @@ declare class InsertSvgCommand {
46358
46433
  private mergeToDocument;
46359
46434
  }
46360
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
+
46361
46444
  /**
46362
46445
  * FINDREPLACE 命令 - 打开查找替换面板
46363
46446
  */
@@ -46440,6 +46523,21 @@ declare class WebMapOverlayCommand {
46440
46523
  }
46441
46524
  declare function destroyWebMapOverlayPanel(): void;
46442
46525
 
46526
+ /**
46527
+ * 检测所有实体坐标有效性的命令
46528
+ * 遍历当前空间所有实体,检测哪些实体的 BoundingBox 坐标无效(NaN/Infinity),
46529
+ * 并输出这些实体的详细信息到命令行。
46530
+ */
46531
+ declare class ValidateBoundsCommand {
46532
+ main(): Promise<void>;
46533
+ private buildInfo;
46534
+ private getEntityType;
46535
+ /**
46536
+ * 输出特定类型实体的额外诊断信息
46537
+ */
46538
+ private writeExtraEntityInfo;
46539
+ }
46540
+
46443
46541
  /**
46444
46542
  * 箭头渲染配置
46445
46543
  */
@@ -51326,6 +51424,19 @@ declare class GeometryUtils {
51326
51424
  * @returns 如果边界框与直线相交返回true
51327
51425
  */
51328
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;
51329
51440
  /**
51330
51441
  * 检查边界框与圆形的碰撞
51331
51442
  *
@@ -53846,8 +53957,8 @@ declare function hitTestPattern(patternEntity: HatchEnt, testPoint1: Point2D$1,
53846
53957
  /**
53847
53958
  * 样条曲线命中测试函数
53848
53959
  * @param {SplineEnt} splineEntity - 样条曲线对象
53849
- * @param {Point2D} testPoint1 - 测试点1
53850
- * @param {Point2D} testPoint2 - 测试点2
53960
+ * @param {Point2D} testPoint1 - 测试点1(拾取框最小点)
53961
+ * @param {Point2D} testPoint2 - 测试点2(拾取框最大点)
53851
53962
  * @returns {SplineEnt | undefined} 命中的样条曲线对象或undefined
53852
53963
  */
53853
53964
  declare function hitTestSpline(splineEntity: SplineEnt, testPoint1: Point2D$1, testPoint2: Point2D$1): SplineEnt | undefined;
@@ -54742,7 +54853,7 @@ declare const palettePlotIcons: Record<string, string>;
54742
54853
 
54743
54854
  //# sourceMappingURL=index.d.ts.map
54744
54855
 
54745
- 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, 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, 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 };
54746
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 };
54747
54858
 
54748
54859
  // ============================================
@@ -54926,6 +55037,7 @@ interface VjcadModule {
54926
55037
  CutClipCommand: typeof CutClipCommand;
54927
55038
  CutRecCommand: typeof CutRecCommand;
54928
55039
  DLineCommand: typeof DLineCommand;
55040
+ DataBrowserCommand: typeof DataBrowserCommand;
54929
55041
  DataToDrawCommand: typeof DataToDrawCommand;
54930
55042
  DbArc: typeof DbArc;
54931
55043
  DbBackgroundConfig: typeof DbBackgroundConfig;
@@ -55137,6 +55249,7 @@ interface VjcadModule {
55137
55249
  IntegerInputHandler: typeof IntegerInputHandler;
55138
55250
  IntegerInputOptions: typeof IntegerInputOptions;
55139
55251
  IntegerResult: typeof IntegerResult;
55252
+ InvertSelectionCommand: typeof InvertSelectionCommand;
55140
55253
  ItemCollection: typeof ItemCollection;
55141
55254
  JIS_LC_20_PATTERN: typeof JIS_LC_20_PATTERN;
55142
55255
  JIS_LC_8_PATTERN: typeof JIS_LC_8_PATTERN;
@@ -55335,6 +55448,7 @@ interface VjcadModule {
55335
55448
  PurgeBlocksCommand: typeof PurgeBlocksCommand;
55336
55449
  PurgeCommand: typeof PurgeCommand;
55337
55450
  PurgeImageCommand: typeof PurgeImageCommand;
55451
+ PurgeInvalidBoundsCommand: typeof PurgeInvalidBoundsCommand;
55338
55452
  PurgeLayerCommand: typeof PurgeLayerCommand;
55339
55453
  QBlockCommand: typeof QBlockCommand;
55340
55454
  QSaveCommand: typeof QSaveCommand;
@@ -55490,6 +55604,7 @@ interface VjcadModule {
55490
55604
  UndoHistoryPanel: typeof UndoHistoryPanel;
55491
55605
  UndoManager: typeof UndoManager;
55492
55606
  UngroupCommand: typeof UngroupCommand;
55607
+ ValidateBoundsCommand: typeof ValidateBoundsCommand;
55493
55608
  ViewMenu: typeof ViewMenu;
55494
55609
  WblockCommand: typeof WblockCommand;
55495
55610
  WebCadCoreService: typeof WebCadCoreService;
@@ -55580,6 +55695,7 @@ interface VjcadModule {
55580
55695
  defaultRibbonConfig: typeof defaultRibbonConfig;
55581
55696
  degreesToRadians: typeof degreesToRadians;
55582
55697
  delay: typeof delay;
55698
+ destroyDataBrowserPanel: typeof destroyDataBrowserPanel;
55583
55699
  destroyExtractCenterlinePanel: typeof destroyExtractCenterlinePanel;
55584
55700
  destroyFindReplacePanel: typeof destroyFindReplacePanel;
55585
55701
  destroyQuickSelectPanel: typeof destroyQuickSelectPanel;