mxdraw 0.1.355 → 0.1.357
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/mxdraw.d.ts +12 -0
- package/dist/mxdraw.esm.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/package.json +1 -1
package/dist/mxdraw.d.ts
CHANGED
|
@@ -580,6 +580,7 @@ declare abstract class MxDbEntity extends RenderOrderNode<EntityEvent, MxDbEntit
|
|
|
580
580
|
lineWidthByPixels: boolean;
|
|
581
581
|
dDashArray: number;
|
|
582
582
|
dDashRatio: number;
|
|
583
|
+
sLayoutName: string;
|
|
583
584
|
layer: string;
|
|
584
585
|
protected use_smallcoord_display: boolean;
|
|
585
586
|
abstract getTypeName(): string;
|
|
@@ -588,6 +589,8 @@ declare abstract class MxDbEntity extends RenderOrderNode<EntityEvent, MxDbEntit
|
|
|
588
589
|
toSmallcoord(mxobj: MxDrawObject, pt: THREE.Vector3): THREE.Vector3;
|
|
589
590
|
isUseSmallcoordDisplay(): boolean;
|
|
590
591
|
setUseSmallcoordDisplay(use_smallcoord_display: boolean): void;
|
|
592
|
+
setLayoutName(name: string): void;
|
|
593
|
+
getLayoutName(): string;
|
|
591
594
|
/**
|
|
592
595
|
* 自定义对象的绘制函数。在方法中定义如何绘制图形
|
|
593
596
|
* @param pWorldDraw 绘制对象{@link McGiWorldDraw }
|
|
@@ -2857,6 +2860,15 @@ declare class MxDrawObject extends Node<MxDrawEvents, Node<any, any>> {
|
|
|
2857
2860
|
* ```
|
|
2858
2861
|
*/
|
|
2859
2862
|
getViewAngle(): number;
|
|
2863
|
+
/**
|
|
2864
|
+
* 内部使用
|
|
2865
|
+
* @example
|
|
2866
|
+
* ```typescript
|
|
2867
|
+
*
|
|
2868
|
+
*
|
|
2869
|
+
* ```
|
|
2870
|
+
*/
|
|
2871
|
+
clearCurrentLayoutVeriableCache(): void;
|
|
2860
2872
|
/**
|
|
2861
2873
|
* 得到系统变量
|
|
2862
2874
|
* @example
|