@openglobus/og 0.27.24 → 0.28.0
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/lib/entity/EntityCollection.d.ts +5 -0
- package/lib/entity/Polyline.d.ts +61 -4
- package/lib/entity/PolylineHandler.d.ts +3 -0
- package/lib/entity/Ray.d.ts +39 -0
- package/lib/entity/RayHandler.d.ts +17 -1
- package/lib/og.es.js +1 -1
- package/lib/og.es.js.map +1 -1
- package/lib/renderer/Renderer.d.ts +7 -7
- package/lib/scene/RenderNode.d.ts +1 -0
- package/package.json +1 -1
|
@@ -154,23 +154,23 @@ declare class Renderer {
|
|
|
154
154
|
protected toneMappingFramebuffer: Framebuffer | null;
|
|
155
155
|
protected _initialized: boolean;
|
|
156
156
|
/**
|
|
157
|
-
* Texture atlas for the billboards images.
|
|
157
|
+
* Texture atlas for the billboards images.
|
|
158
158
|
* @public
|
|
159
159
|
* @type {TextureAtlas}
|
|
160
160
|
*/
|
|
161
161
|
billboardsTextureAtlas: TextureAtlas;
|
|
162
162
|
/**
|
|
163
|
-
* Texture atlas for the
|
|
163
|
+
* Texture font atlas for the font families and styles.
|
|
164
164
|
* @public
|
|
165
|
-
* @type {
|
|
165
|
+
* @type {FontAtlas}
|
|
166
166
|
*/
|
|
167
|
-
|
|
167
|
+
fontAtlas: FontAtlas;
|
|
168
168
|
/**
|
|
169
|
-
* Texture
|
|
169
|
+
* Texture atlas for the rays, polylines and strips entities.
|
|
170
170
|
* @public
|
|
171
|
-
* @type {
|
|
171
|
+
* @type {TextureAtlas}
|
|
172
172
|
*/
|
|
173
|
-
|
|
173
|
+
strokeTextureAtlas: TextureAtlas;
|
|
174
174
|
protected _entityCollections: EntityCollection[][];
|
|
175
175
|
protected _currentOutput: string;
|
|
176
176
|
protected _fnScreenFrame: Function | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openglobus/og",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "[openglobus](https://www.openglobus.org/) is a javascript/typescript library designed to display interactive 3d maps and planets with map tiles, imagery and vector data, markers, and 3D objects. It uses the WebGL technology, open source, and completely free.",
|
|
5
5
|
"main": "lib/og.es.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|