}
@Override
public PathPartArray l(Point2DArray points)
{
Point2DArray list = new Point2DArray();
if ((null != points) && (points.getLength() > 0))
{
final int leng = points.getLength();
for (int i = 0; i < leng; i++)
{
Point2D point = points.getPoint(i);
if (null != point)
{
list.push(point);
}
}
if (list.getLength() > 0)
{
getJSO().push(new LineToPathPart(list, false).getJSO());
}
}
return this;