@xeokit/xeokit-sdk 2.3.0-beta-18 → 2.3.0-beta-21
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/README.md +9 -1
- package/dist/xeokit-sdk.cjs.js +28382 -28380
- package/dist/xeokit-sdk.es.js +28381 -28381
- package/dist/xeokit-sdk.min.cjs.js +1 -1
- package/dist/xeokit-sdk.min.es.js +1 -1
- package/package.json +1 -1
- package/types/plugins/AngleMeasurementsPlugin/AngleMeasurement.d.ts +2 -2
- package/types/plugins/AngleMeasurementsPlugin/AngleMeasurementsControl.d.ts +1 -1
- package/types/plugins/DistanceMeasurementsPlugin/DistanceMeasurement.d.ts +2 -2
- package/types/plugins/DistanceMeasurementsPlugin/DistanceMeasurementsControl.d.ts +1 -1
- package/types/viewer/Configs.d.ts +1 -1
- package/types/viewer/scene/camera/Camera.d.ts +3 -3
package/package.json
CHANGED
|
@@ -31,13 +31,13 @@ export declare class AngleMeasurement extends Component {
|
|
|
31
31
|
/**
|
|
32
32
|
* Sets whether this AngleMeasurement is visible or not.
|
|
33
33
|
*
|
|
34
|
-
* @type Boolean
|
|
34
|
+
* @type {Boolean}
|
|
35
35
|
*/
|
|
36
36
|
set visible(arg: boolean);
|
|
37
37
|
/**
|
|
38
38
|
* Gets whether this AngleMeasurement is visible or not.
|
|
39
39
|
*
|
|
40
|
-
* @type Boolean
|
|
40
|
+
* @type {Boolean}
|
|
41
41
|
*/
|
|
42
42
|
get visible(): boolean;
|
|
43
43
|
/**
|
|
@@ -33,14 +33,14 @@ export declare class DistanceMeasurement extends Component {
|
|
|
33
33
|
/**
|
|
34
34
|
* Sets whether this DistanceMeasurement is visible or not.
|
|
35
35
|
*
|
|
36
|
-
* @type Boolean
|
|
36
|
+
* @type {Boolean}
|
|
37
37
|
*/
|
|
38
38
|
set visible(arg: boolean);
|
|
39
39
|
|
|
40
40
|
/**
|
|
41
41
|
* Gets whether this DistanceMeasurement is visible or not.
|
|
42
42
|
*
|
|
43
|
-
* @type Boolean
|
|
43
|
+
* @type {Boolean}
|
|
44
44
|
*/
|
|
45
45
|
get visible(): boolean;
|
|
46
46
|
|
|
@@ -14,7 +14,7 @@ export declare class DistanceMeasurementsControl extends Component {
|
|
|
14
14
|
|
|
15
15
|
/** Gets if this DistanceMeasurementsControl is currently active, where it is responding to input.
|
|
16
16
|
*
|
|
17
|
-
* @returns {
|
|
17
|
+
* @returns {Boolean}
|
|
18
18
|
*/
|
|
19
19
|
get active(): boolean;
|
|
20
20
|
|
|
@@ -194,19 +194,19 @@ export declare class Camera extends Component {
|
|
|
194
194
|
|
|
195
195
|
/**
|
|
196
196
|
* Gets if the World-space X-axis is "up".
|
|
197
|
-
* @returns {
|
|
197
|
+
* @returns {Boolean}
|
|
198
198
|
*/
|
|
199
199
|
get xUp(): boolean;
|
|
200
200
|
|
|
201
201
|
/**
|
|
202
202
|
* Gets if the World-space Y-axis is "up".
|
|
203
|
-
* @returns {
|
|
203
|
+
* @returns {Boolean}
|
|
204
204
|
*/
|
|
205
205
|
get yUp(): boolean;
|
|
206
206
|
|
|
207
207
|
/**
|
|
208
208
|
* Gets if the World-space Z-axis is "up".
|
|
209
|
-
* @returns {
|
|
209
|
+
* @returns {Boolean}
|
|
210
210
|
*/
|
|
211
211
|
get zUp(): boolean;
|
|
212
212
|
|