[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model Edge.java, 1.49, 1.50
Status: Pre-Alpha
Brought to you by:
henryml
From: rimestad <rim...@us...> - 2006-08-22 14:15:16
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv26538/src/net/sourceforge/bprocessor/model Modified Files: Edge.java Log Message: not all done yet Index: Edge.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/Edge.java,v retrieving revision 1.49 retrieving revision 1.50 diff -C2 -d -r1.49 -r1.50 *** Edge.java 4 Aug 2006 11:48:04 -0000 1.49 --- Edge.java 22 Aug 2006 14:15:10 -0000 1.50 *************** *** 512,514 **** --- 512,527 ---- return surfaces; } + + /** + * Create a offset from a list of lines and a surface + * PRECONDITION: all the edges have to be in the given surface + * @param edges The list of edges + * @param inner The surface + * @param framewidth The offset positive inside and negative outside + * @return The generated list of lines + */ + public static List offset(List edges, Surface inner, double framewidth) { + // TODO Auto-generated method stub + return null; + } } |