Skip to content

Commit

Permalink
ran prettier to fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-b-b committed Sep 20, 2024
1 parent 76f02a9 commit c6feb27
Show file tree
Hide file tree
Showing 14 changed files with 277 additions and 282 deletions.
6 changes: 3 additions & 3 deletions packages/engine/Source/DataSources/BillboardGraphics.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ Object.defineProperties(BillboardGraphics.prototype, {
* @type {Property|undefined}
*/
pixelOffsetScaleByDistance: createPropertyDescriptor(
"pixelOffsetScaleByDistance",
"pixelOffsetScaleByDistance"
),

/**
Expand All @@ -320,7 +320,7 @@ Object.defineProperties(BillboardGraphics.prototype, {
* @type {Property|undefined}
*/
distanceDisplayCondition: createPropertyDescriptor(
"distanceDisplayCondition",
"distanceDisplayCondition"
),

/**
Expand All @@ -330,7 +330,7 @@ Object.defineProperties(BillboardGraphics.prototype, {
* @type {Property|undefined}
*/
disableDepthTestDistance: createPropertyDescriptor(
"disableDepthTestDistance",
"disableDepthTestDistance"
),

/**
Expand Down
6 changes: 3 additions & 3 deletions packages/engine/Source/DataSources/BoxGraphics.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ Object.defineProperties(BoxGraphics.prototype, {
* @type {Property|undefined}
*/
distanceDisplayCondition: createPropertyDescriptor(
"distanceDisplayCondition",
"distanceDisplayCondition"
),
});

Expand Down Expand Up @@ -197,7 +197,7 @@ BoxGraphics.prototype.merge = function (source) {
this.dimensions = defaultValue(this.dimensions, source.dimensions);
this.heightReference = defaultValue(
this.heightReference,
source.heightReference,
source.heightReference
);
this.fill = defaultValue(this.fill, source.fill);
this.material = defaultValue(this.material, source.material);
Expand All @@ -207,7 +207,7 @@ BoxGraphics.prototype.merge = function (source) {
this.shadows = defaultValue(this.shadows, source.shadows);
this.distanceDisplayCondition = defaultValue(
this.distanceDisplayCondition,
source.distanceDisplayCondition,
source.distanceDisplayCondition
);
};
export default BoxGraphics;
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ ConstantPositionProperty.prototype.setValue = function (value, referenceFrame) {
ConstantPositionProperty.prototype.getValueInReferenceFrame = function (
time,
referenceFrame,
result,
result
) {
//>>includeStart('debug', pragmas.debug);
if (!defined(time)) {
Expand All @@ -129,7 +129,7 @@ ConstantPositionProperty.prototype.getValueInReferenceFrame = function (
this._value,
this._referenceFrame,
referenceFrame,
result,
result
);
};

Expand Down
Loading

0 comments on commit c6feb27

Please sign in to comment.