[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/model GlCamera.java, 1.4, 1.5 GlObject.jav
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2010-02-05 13:33:07
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/model In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv4483/src/net/sourceforge/bprocessor/gl/model Modified Files: GlCamera.java GlObject.java Log Message: Index: GlObject.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/model/GlObject.java,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** GlObject.java 15 Nov 2007 13:07:41 -0000 1.8 --- GlObject.java 5 Feb 2010 13:32:59 -0000 1.9 *************** *** 43,45 **** --- 43,52 ---- */ public Intersection intersection(Edge e); + + /** + * Returns true if vertex is contained in this GLObject + * @param v Vertex + * @return true if contained + */ + public boolean contains(Vertex v); } Index: GlCamera.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/model/GlCamera.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** GlCamera.java 15 Nov 2007 13:07:41 -0000 1.4 --- GlCamera.java 5 Feb 2010 13:32:59 -0000 1.5 *************** *** 101,103 **** --- 101,108 ---- return new LinkedList(); } + + /** {@inheritDoc} */ + public boolean contains(Vertex v) { + return false; + } } |