@inweb/viewer-core 26.4.0 → 26.4.1
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.
|
@@ -189,11 +189,11 @@ export interface IText {
|
|
|
189
189
|
*/
|
|
190
190
|
export interface IArrow {
|
|
191
191
|
/**
|
|
192
|
-
*
|
|
192
|
+
* Coordinates of the start point of arrow.
|
|
193
193
|
*/
|
|
194
194
|
start: IPoint;
|
|
195
195
|
/**
|
|
196
|
-
*
|
|
196
|
+
* Coordinates of the end point of arrow.
|
|
197
197
|
*/
|
|
198
198
|
end: IPoint;
|
|
199
199
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inweb/viewer-core",
|
|
3
|
-
"version": "26.4.
|
|
3
|
+
"version": "26.4.1",
|
|
4
4
|
"description": "3D CAD and BIM data Viewer core",
|
|
5
5
|
"homepage": "https://cloud.opendesign.com/docs/index.html",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"test": "karma start karma.conf.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@inweb/client": "~26.4.
|
|
30
|
-
"@inweb/eventemitter2": "~26.4.
|
|
29
|
+
"@inweb/client": "~26.4.1",
|
|
30
|
+
"@inweb/eventemitter2": "~26.4.1"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/src/viewer/IViewpoint.ts
CHANGED
|
@@ -248,12 +248,12 @@ export interface IText {
|
|
|
248
248
|
*/
|
|
249
249
|
export interface IArrow {
|
|
250
250
|
/**
|
|
251
|
-
*
|
|
251
|
+
* Coordinates of the start point of arrow.
|
|
252
252
|
*/
|
|
253
253
|
start: IPoint;
|
|
254
254
|
|
|
255
255
|
/**
|
|
256
|
-
*
|
|
256
|
+
* Coordinates of the end point of arrow.
|
|
257
257
|
*/
|
|
258
258
|
end: IPoint;
|
|
259
259
|
|