Skip to content

Commit

Permalink
Break up a long line.
Browse files Browse the repository at this point in the history
  • Loading branch information
manthey committed Sep 26, 2019
1 parent 63ab57d commit 0003a64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/webgl/pointFeature.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,9 @@ var webgl_pointFeature = function (arg) {
fillVal = fillFunc(item, i) ? 1.0 : 0.0;
fillOpacityVal = fillOpacityFunc(item, i);
fillColorVal = fillColorFunc(item, i);
if (m_primitiveShapeAuto && ((fillVal && fillOpacityVal) || (strokeVal && strokeOpacityVal)) && radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0) > maxr) {
if (m_primitiveShapeAuto &&
((fillVal && fillOpacityVal) || (strokeVal && strokeOpacityVal)) &&
radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0) > maxr) {
maxr = radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0);
}
for (j = 0; j < vpf; j += 1, ivpf += 1, ivpf3 += 3) {
Expand Down

0 comments on commit 0003a64

Please sign in to comment.