[Bprocessor-commit] model/src/net/sourceforge/bprocessor/model CoordinateSystem.java, 1.60, 1.61
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2007-11-12 14:45:53
|
Update of /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29052/src/net/sourceforge/bprocessor/model Modified Files: CoordinateSystem.java Log Message: active coordinate-system Index: CoordinateSystem.java =================================================================== RCS file: /cvsroot/bprocessor/model/src/net/sourceforge/bprocessor/model/CoordinateSystem.java,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** CoordinateSystem.java 24 Oct 2007 16:04:54 -0000 1.60 --- CoordinateSystem.java 12 Nov 2007 14:45:47 -0000 1.61 *************** *** 734,737 **** --- 734,747 ---- return n; } + + /** + * Returns a copy of this CoordinateSystem placed + * at specified origin + * @param origin new origin + * @return copy placed at specified origin + */ + public CoordinateSystem copy(Vertex origin) { + return new CoordinateSystem(i, j, n, origin); + } /** |