mxdraw 0.1.63 → 0.1.66
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/lib/MxModule/MxDbDatabase/MxDbDatabase.js +1 -1
- package/dist/lib/MxModule/MxDbSVG/MxDbSVG.js +1 -1
- package/dist/lib/MxModule/MxDrawObject/MxDrawObject.js +1 -1
- package/dist/lib/MxModule/loadCoreCode/mxfun.es5.js +1 -1
- package/dist/mxdraw.es5.js +1 -1
- package/dist/mxdraw.umd.js +1 -1
- package/dist/types/MxModule/MxDbDatabase/MxDbDatabase.d.ts +8 -0
- package/dist/types/MxModule/MxDbEntity/MxDbEntity.d.ts +1 -1
- package/dist/types/MxModule/MxDbSVG/MxDbSVG.d.ts +3 -1
- package/dist/types/MxModule/MxDrawObject/MxDrawObject.d.ts +8 -0
- package/package.json +1 -1
|
@@ -17,7 +17,7 @@ export default class MxDbSVG extends MxDbEntity {
|
|
|
17
17
|
/** 是否倒置SVG图形 */
|
|
18
18
|
svgReverse: boolean;
|
|
19
19
|
svgMirror: boolean;
|
|
20
|
-
svgChildColor
|
|
20
|
+
private svgChildColor;
|
|
21
21
|
svgMargin: THREE.Vector2;
|
|
22
22
|
private isSvgDirtyLocation;
|
|
23
23
|
private isLoadFromPath;
|
|
@@ -27,6 +27,8 @@ export default class MxDbSVG extends MxDbEntity {
|
|
|
27
27
|
fixedSize: boolean;
|
|
28
28
|
/**使用svg的颜色 */
|
|
29
29
|
useSvgColor: boolean;
|
|
30
|
+
setSvgChildColor(aryColor: number[]): void;
|
|
31
|
+
getSvgChildColor(): number[];
|
|
30
32
|
private calcVewSize;
|
|
31
33
|
worldDraw(pWorldDraw: McGiWorldDraw): void;
|
|
32
34
|
/**
|