mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
Added types to PolylineGlowMaterialProperty and PolylineDashMaterialP… (#34610)
* Added types to PolylineGlowMaterialProperty and PolylineDashMaterialProperty [Cesium] * Fix line length and whitespace [Cesium] * Fix whitespaces * Fix PR comments
This commit is contained in:
parent
10c515bb4b
commit
56dde5eb57
29
types/cesium/index.d.ts
vendored
29
types/cesium/index.d.ts
vendored
@ -2437,18 +2437,26 @@ declare namespace Cesium {
|
||||
constructor(color?: Property);
|
||||
}
|
||||
|
||||
class PolylineGeometryUpdater extends GeometryUpdater {
|
||||
readonly depthFailMaterialProperty: MaterialProperty;
|
||||
readonly distanceDisplayConditionProperty: Property;
|
||||
constructor(entity: Entity, scene: Scene);
|
||||
}
|
||||
|
||||
class PolylineGlowMaterialProperty extends MaterialProperty {
|
||||
color: Color;
|
||||
glowPower: Property;
|
||||
constructor(options?: { color?: Property; glowPower?: Property });
|
||||
}
|
||||
|
||||
class PolylineDashMaterialProperty extends MaterialProperty {
|
||||
color: Color;
|
||||
gapColor: Color;
|
||||
dashLength: Property;
|
||||
dashPattern: Property;
|
||||
constructor(options?: {color?: Color; gapColor?: Color; dashLength?: Property; dashPattern?: Property});
|
||||
}
|
||||
|
||||
class PolylineGeometryUpdater extends GeometryUpdater {
|
||||
readonly depthFailMaterialProperty: MaterialProperty;
|
||||
readonly distanceDisplayConditionProperty: Property;
|
||||
constructor(entity: Entity, scene: Scene);
|
||||
}
|
||||
|
||||
class PolylineGraphics {
|
||||
definitionChanged: Event;
|
||||
show: Property;
|
||||
@ -2457,7 +2465,14 @@ declare namespace Cesium {
|
||||
width: number;
|
||||
followSurface: Property;
|
||||
granularity: Property;
|
||||
constructor(options?: { positions?: Cartesian3[]; followSurface?: Property; width?: number; show?: Property; material?: MaterialProperty; granularity?: Property });
|
||||
constructor(options?: {
|
||||
positions?: Cartesian3[];
|
||||
followSurface?: Property;
|
||||
width?: number;
|
||||
show?: Property;
|
||||
material?: MaterialProperty;
|
||||
granularity?: Property
|
||||
});
|
||||
clone(result?: PolylineGraphics): PolylineGraphics;
|
||||
merge(source: PolylineGraphics): PolylineGraphics;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user