Source code for PathUtil.java

What follows is the highlighted source code with comments. You can also download this file directly: PathUtil.java.

/*
 * Copyright (C) 2012 W. Patrick Hooper <wphooper@gmail.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

package path;

import geometry.LineSegment;

/**
 * Some useful functions for working with Paths and PolygonalPaths. 
 * 
 * @author W. Patrick Hooper
 */
public class PathUtil {
    
    /** Convert a polygonal path to a string representation. */
    public static String toString(PolygonalPath p) {
        EdgeIterator it=p.iterator();
        if (! it.hasNext()) {
            return "<>";
        }
        // Now we know we have at least one segment.
        LineSegment seg=it.next();

        // A StringBuilder is a useful way to assemble a long string.
        StringBuilder builder=new StringBuilder();
        builder.append("< ");
        builder.append(seg.startingPoint());
        builder.append(", ");
        builder.append(seg.endingPoint());
        while (it.hasNext()) {
            seg=it.next();
            builder.append(", ");
            builder.append(seg.endingPoint());
        }
        builder.append(">");
        
        return builder.toString();
    }
}
HOOPER >>>>> JAVA TUTORIAL
Last modified on August 17, 2018.
[check html] [check css]