mars3d-cesium 1.131.0 → 1.131.1

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.
@@ -31906,9 +31906,9 @@ export enum DepthFunction {
31906
31906
 
31907
31907
  /**
31908
31908
  * Returns the type that the given class property has in a GLSL shader.
31909
- *
31910
- * It returns the same string as `PropertyTextureProperty.prototype.getGlslType`
31911
- * for a property texture property with the given class property
31909
+
31910
+ It returns the same string as `PropertyTextureProperty.prototype.getGlslType`
31911
+ for a property texture property with the given class property
31912
31912
  * @param classProperty - The class property
31913
31913
  * @returns The GLSL shader type string for the property
31914
31914
  */
@@ -31916,8 +31916,8 @@ export function getGlslType(classProperty: MetadataClassProperty): string;
31916
31916
 
31917
31917
  /**
31918
31918
  * Returns a shader statement that applies the inverse of the
31919
- * value transform to the given value, based on the given offset
31920
- * and scale.
31919
+ value transform to the given value, based on the given offset
31920
+ and scale.
31921
31921
  * @param input - The input value
31922
31922
  * @param offset - The offset
31923
31923
  * @param scale - The scale
@@ -31927,7 +31927,7 @@ export function unapplyValueTransform(input: string, offset: string, scale: stri
31927
31927
 
31928
31928
  /**
31929
31929
  * Returns a shader statement that applies the inverse of the
31930
- * normalization, based on the given component type
31930
+ normalization, based on the given component type
31931
31931
  * @param input - The input value
31932
31932
  * @param componentType - The component type
31933
31933
  * @returns The statement
@@ -31936,20 +31936,20 @@ export function unnormalize(input: string, componentType: string): string;
31936
31936
 
31937
31937
  /**
31938
31938
  * Creates a shader statement that returns the value of the specified
31939
- * property, normalized to the range [0, 1].
31939
+ property, normalized to the range [0, 1].
31940
31940
  * @param classProperty - The class property
31941
31941
  * @param metadataProperty - The metadata property, either
31942
- * a `PropertyTextureProperty` or a `PropertyAttributeProperty`
31942
+ a `PropertyTextureProperty` or a `PropertyAttributeProperty`
31943
31943
  * @returns The string
31944
31944
  */
31945
31945
  export function getSourceValueStringScalar(classProperty: MetadataClassProperty, metadataProperty: any): string;
31946
31946
 
31947
31947
  /**
31948
31948
  * Creates a shader statement that returns the value of the specified
31949
- * component of the given property, normalized to the range [0, 1].
31949
+ component of the given property, normalized to the range [0, 1].
31950
31950
  * @param classProperty - The class property
31951
31951
  * @param metadataProperty - The metadata property, either
31952
- * a `PropertyTextureProperty` or a `PropertyAttributeProperty`
31952
+ a `PropertyTextureProperty` or a `PropertyAttributeProperty`
31953
31953
  * @param componentName - The name, in ["x", "y", "z", "w"]
31954
31954
  * @returns The string
31955
31955
  */