let buildSliderFloatData1 = () => { let x1 = 41; let y1 = 51; let width1 = 200; let height1 = 300; let textWidth1 = 150; let min1 = 0.1; let max1 = 1.1; let numDecimalDigits1 = 2; let defaultValue1 = 0.2; let str1 = "s"; ( ((x1, y1, width1, height1), textWidth1), (min1, max1, numDecimalDigits1), (defaultValue1, str1), ); }; let buildSliderFloatData2 = () => { let x2 = 420; let y2 = 52; let width2 = 200; let height2 = 300; let textWidth2 = 251; let min2 = 0.2; let max2 = 2.2; let numDecimalDigits2 = 2; let defaultValue2 = 0.4; let str2 = "t"; ( ((x2, y2, width2, height2), textWidth2), (min2, max2, numDecimalDigits2), (defaultValue2, str2), ); }; let buildSliderIntData1 = () => { let x1 = 41; let y1 = 51; let width1 = 200; let height1 = 300; let textWidth1 = 150; let min1 = 0; let max1 = 6; /* let numDecimalDigits1 = 2; */ let defaultValue1 = 2; let str1 = "s"; ( ((x1, y1, width1, height1), textWidth1), (min1, max1), (defaultValue1, str1), ); }; let buildSliderIntData2 = () => { let x2 = 342; let y2 = 52; let width2 = 200; let height2 = 300; let textWidth2 = 250; let min2 = 1; let max2 = 10; let defaultValue2 = 3; let str2 = "s"; ( ((x2, y2, width2, height2), textWidth2), (min2, max2), (defaultValue2, str2), ); };