[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/model Intersection.java, 1.5, 1.6
Status: Pre-Alpha
Brought to you by:
henryml
From: Nordholt <nor...@us...> - 2007-06-26 00:42:28
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/model In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv25220/src/net/sourceforge/bprocessor/gl/model Modified Files: Intersection.java Log Message: added a "LOCK_INTERSECTION" type of intersection. This type of intersection represents a intersection that was derived from a different intersection as a result of locking. This type intersection should have the original intersection as object. Index: Intersection.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/model/Intersection.java,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Intersection.java 4 Aug 2006 11:48:11 -0000 1.5 --- Intersection.java 26 Jun 2007 00:42:17 -0000 1.6 *************** *** 37,40 **** --- 37,42 ---- public static final int PLANE_INTERSECTION = 7; + /** Lock intersection */ + public static final int LOCK_INTERSECTION = 8; /** The vertex */ *************** *** 129,132 **** --- 131,137 ---- name = "plane intersection"; break; + case Intersection.LOCK_INTERSECTION: + name = "lock intersection"; + break; } buffer.append(name); |