123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- import Cartesian2 from "../Core/Cartesian2.js";
- import Color from "../Core/Color.js";
- import defaultValue from "../Core/defaultValue.js";
- import defined from "../Core/defined.js";
- import Event from "../Core/Event.js";
- import createPropertyDescriptor from "./createPropertyDescriptor.js";
- import Property from "./Property.js";
- var defaultRepeat = new Cartesian2(1, 1);
- var defaultTransparent = false;
- var defaultColor = Color.WHITE;
- function ImageMaterialProperty(options) {
- options = defaultValue(options, defaultValue.EMPTY_OBJECT);
- this._definitionChanged = new Event();
- this._image = undefined;
- this._imageSubscription = undefined;
- this._repeat = undefined;
- this._repeatSubscription = undefined;
- this._color = undefined;
- this._colorSubscription = undefined;
- this._transparent = undefined;
- this._transparentSubscription = undefined;
- this.image = options.image;
- this.repeat = options.repeat;
- this.color = options.color;
- this.transparent = options.transparent;
- }
- Object.defineProperties(ImageMaterialProperty.prototype, {
-
- isConstant: {
- get: function () {
- return (
- Property.isConstant(this._image) && Property.isConstant(this._repeat)
- );
- },
- },
-
- definitionChanged: {
- get: function () {
- return this._definitionChanged;
- },
- },
-
- image: createPropertyDescriptor("image"),
-
- repeat: createPropertyDescriptor("repeat"),
-
- color: createPropertyDescriptor("color"),
-
- transparent: createPropertyDescriptor("transparent"),
- });
- ImageMaterialProperty.prototype.getType = function (time) {
- return "Image";
- };
- ImageMaterialProperty.prototype.getValue = function (time, result) {
- if (!defined(result)) {
- result = {};
- }
- result.image = Property.getValueOrUndefined(this._image, time);
- result.repeat = Property.getValueOrClonedDefault(
- this._repeat,
- time,
- defaultRepeat,
- result.repeat
- );
- result.color = Property.getValueOrClonedDefault(
- this._color,
- time,
- defaultColor,
- result.color
- );
- if (Property.getValueOrDefault(this._transparent, time, defaultTransparent)) {
- result.color.alpha = Math.min(0.99, result.color.alpha);
- }
- return result;
- };
- ImageMaterialProperty.prototype.equals = function (other) {
- return (
- this === other ||
- (other instanceof ImageMaterialProperty &&
- Property.equals(this._image, other._image) &&
- Property.equals(this._repeat, other._repeat) &&
- Property.equals(this._color, other._color) &&
- Property.equals(this._transparent, other._transparent))
- );
- };
- export default ImageMaterialProperty;
|