Home | History | Annotate | Download | only in flot

Lines Matching full:points

25 extra data points might be inserted through interpolation. Note that at points
75 points = datapoints.points,
77 otherpoints = other.datapoints.points,
90 if ( i >= points.length ) {
96 if ( points[ i ] == null ) {
101 newpoints.push( points[ i + m ] );
108 // for lines, we can't use the rest of the points
112 newpoints.push( points[ i + m ] );
131 // cases where we actually got two points
133 px = points[ i ];
134 py = points[ i + 1 ];
142 newpoints.push( points[ i + m ] );
156 if ( withlines && i > 0 && points[ i - ps ] != null ) {
157 intery = py + ( points[ i - ps + 1 ] - py ) * ( qx - px ) / ( points[ i - ps ] - px );
161 newpoints.push( points[ i + m ] );
178 newpoints.push( points[ i + m ] );
213 datapoints.points = newpoints;