Warning: session_start(): open(/var/lib/php/sessions/sess_32en5n529u8hv5p9utg3s4m1hi, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51

Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
static PtBuffer onePathToIntervalsOfFixedLength(OnePath path, double segmentLength) { if (path == null) null; new PtBuffer out; int iPath = 0, lPath = path.size(); var it = path.pointIterator(); Pt p = it.next(), lastPoint = p; double carry = 0; while true { int iPath2 = iPath; double len = 0; while (it.hasNext() && (iPath2 == iPath || (len = p.minus(lastPoint).length()+carry)+.5 < segmentLength)) { p = it.next(); iPath2++; } if (iPath2 == iPath) break; out.add(p); carry = segmentLength-len; printVars ifdef onePathToIntervalsOfFixedLength_debug(+segmentLength, +len, +lastPoint, +p, +carry); lastPoint = p; } ret out; }