new GridMaterialProperty
A MaterialProperty that maps to grid Material uniforms.
Members
-
cellAlpha :Property
-
A numeric Property which determines the grid cells alpha value, when combined with the color alpha.
- Default Value:
- new ConstantProperty(0.1)
-
color :Property
-
- Default Value:
- new ConstantProperty(Color.WHITE)
-
lineCount :Property
-
A Cartesian2 Property which determines the number of rows and columns in the grid.
- Default Value:
- new ConstantProperty(new Cartesian2(8, 8))
-
lineThickness :Property
-
A Cartesian2 Property which determines the thickness of rows and columns in the grid.
- Default Value:
- new ConstantProperty(new Cartesian2(1.0, 1.0))
Methods
-
equals
-
Compares this property to the provided property and returns
true
if they are equal,false
otherwise.Parameters:
Name Type Argument Description other
Property <optional>
The other property. Returns:
Booleantrue
if left and right are equal,false
otherwise. -
getType
-
Gets the Material type at the provided time.
Parameters:
Name Type Description time
JulianDate The time for which to retrieve the type. -
getValue
-
Gets the value of the property at the provided time.
Parameters:
Name Type Argument Description time
JulianDate The time for which to retrieve the value. result
Object <optional>
The object to store the value into, if omitted, a new instance is created and returned. Throws:
DeveloperError : time is required.Returns:
Object The modified result parameter or a new instance if the result parameter was not supplied.