babylonjs-gui 7.11.1 → 7.11.2
Sign up to get free protection for your applications and to get access to all the features.
- package/babylon.gui.d.ts +5 -1
- package/babylon.gui.js +33 -11
- package/babylon.gui.min.js +1 -1
- package/babylon.gui.min.js.map +1 -1
- package/babylon.gui.module.d.ts +10 -2
- package/package.json +2 -2
package/babylon.gui.d.ts
CHANGED
@@ -1832,7 +1832,7 @@ declare module BABYLON.GUI {
|
|
1832
1832
|
/**
|
1833
1833
|
* @internal
|
1834
1834
|
*/
|
1835
|
-
protected static drawEllipse(x: number, y: number, width: number, height: number, context: BABYLON.ICanvasRenderingContext): void;
|
1835
|
+
protected static drawEllipse(x: number, y: number, width: number, height: number, arc: number, context: BABYLON.ICanvasRenderingContext): void;
|
1836
1836
|
/**
|
1837
1837
|
* Returns true if the control is ready to be used
|
1838
1838
|
* @returns
|
@@ -1901,6 +1901,10 @@ declare module BABYLON.GUI {
|
|
1901
1901
|
/** Gets or sets border thickness */
|
1902
1902
|
get thickness(): number;
|
1903
1903
|
set thickness(value: number);
|
1904
|
+
private _arc;
|
1905
|
+
/** Gets or sets arcing of the ellipse (ratio of the circumference between 0 and 1) */
|
1906
|
+
get arc(): number;
|
1907
|
+
set arc(value: number);
|
1904
1908
|
/**
|
1905
1909
|
* Creates a new Ellipse
|
1906
1910
|
* @param name defines the control name
|