mxdraw 0.1.27 → 0.1.28

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.
@@ -6,10 +6,11 @@ import MxDbEntity from '../MxDbEntity';
6
6
  * MxDbAlignedDimension 尺寸对象.
7
7
  */
8
8
  export default class MxDbAlignedDimension extends MxDbEntity {
9
- private pt1;
10
- private pt2;
9
+ point1: THREE.Vector3;
10
+ point2: THREE.Vector3;
11
11
  getTypeName(): string;
12
12
  private getDirection;
13
+ getDimText(): string;
13
14
  worldDraw(pWorldDraw: McGiWorldDraw): void;
14
15
  setPoint1(pt1: THREE.Vector3): void;
15
16
  setPoint2(pt2: THREE.Vector3): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mxdraw",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "main": "dist/mxdraw.umd.js",