diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/scene/Globe.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/scene/Globe.java index c1671900dfd4f857afc4e9f8ba8cd1273c5f94ec..ed54d55725fd11e860b846067f13aec6ec47009d 100644 --- a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/scene/Globe.java +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/scene/Globe.java @@ -228,6 +228,26 @@ public class Globe { */ @JsProperty public int tileCacheSize; + /** + * Properties for controlling globe translucency. + */ + @JsProperty + public GlobeTranslucency translucency; + /** + * The color to render the back side of the globe when the camera is underground or the globe is translucent, + * blended with the globe color based on the camera's distance. + *

To disable underground coloring, set undergroundColor to undefined.

+ * Default: {@link Color#BLACK()} + */ + @JsProperty + public Color undergroundColor; + /** + * When the camera is above the ellipsoid the distance is computed from the nearest point on the ellipsoid instead + * of the camera's position. + * @see Globe#undergroundColor + */ + @JsProperty + public NearFarScalar undergroundColorAlphaByDistance; /** * Gets an event that's raised when the length of the tile load queue has * changed since the last render frame. When the load queue is empty, all @@ -237,6 +257,13 @@ public class Globe { @JsProperty public Event tileLoadProgressEvent; + /** + * Determines the darkness of the vertex shadow. This only takes effect when enableLighting is true. + * Default: 0.3 + */ + @JsProperty + public double vertexShadowDarkness; + @JsConstructor public Globe() { } diff --git a/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/scene/GlobeTranslucency.java b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/scene/GlobeTranslucency.java new file mode 100644 index 0000000000000000000000000000000000000000..5309be98261c6ec842d90c388a0b564a0c24a9d8 --- /dev/null +++ b/cesiumjs4gwt-main/src/main/java/org/cesiumjs/cs/scene/GlobeTranslucency.java @@ -0,0 +1,73 @@ +/* + * Copyright 2023 iSergio, Gis4Fun. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package org.cesiumjs.cs.scene; + +import jsinterop.annotations.JsConstructor; +import jsinterop.annotations.JsProperty; +import jsinterop.annotations.JsType; +import org.cesiumjs.cs.core.NearFarScalar; +import org.cesiumjs.cs.core.Rectangle; + +/** + * Properties for controlling globe translucency. + */ +@JsType(isNative = true, namespace = "Cesium", name = "GlobeTranslucency") +public class GlobeTranslucency { + /** + * A constant translucency to apply to back faces of the globe. + * Default: 1.0 + */ + @JsProperty + public double backFaceAlpha; + /** + * Gets or sets near and far translucency properties of back faces of the globe based on the distance to the camera. + */ + @JsProperty + public NearFarScalar backFaceAlphaByDistance; + /** + * When true, the globe is rendered as a translucent surface. + * Default: false + */ + @JsProperty + public boolean enabled; + /** + * A constant translucency to apply to front faces of the globe. + *

GlobeTranslucency#enabled must be set to true for this option to take effect.

+ * Default: 1.0 + */ + @JsProperty + public boolean frontFaceAlpha; + /** + * Gets or sets near and far translucency properties of front faces of the globe based on the + * distance to the camera. + */ + @JsProperty + public NearFarScalar frontFaceAlphaByDistance; + /** + * A property specifying a Rectangle used to limit translucency to a cartographic area. Defaults to the maximum + * extent of cartographic coordinates. + * Default: {@link Rectangle#MAX_VALUE()} + */ + @JsProperty + public Rectangle rectangle; + + /** + * Properties for controlling globe translucency. + */ + @JsConstructor + public GlobeTranslucency() {} +}