Skip to content

Commit 0003a64

Browse files
committed
Break up a long line.
1 parent 63ab57d commit 0003a64

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/webgl/pointFeature.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,9 @@ var webgl_pointFeature = function (arg) {
220220
fillVal = fillFunc(item, i) ? 1.0 : 0.0;
221221
fillOpacityVal = fillOpacityFunc(item, i);
222222
fillColorVal = fillColorFunc(item, i);
223-
if (m_primitiveShapeAuto && ((fillVal && fillOpacityVal) || (strokeVal && strokeOpacityVal)) && radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0) > maxr) {
223+
if (m_primitiveShapeAuto &&
224+
((fillVal && fillOpacityVal) || (strokeVal && strokeOpacityVal)) &&
225+
radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0) > maxr) {
224226
maxr = radiusVal + (strokeVal && strokeOpacityVal ? strokeWidthVal : 0);
225227
}
226228
for (j = 0; j < vpf; j += 1, ivpf += 1, ivpf3 += 3) {

0 commit comments

Comments
 (0)