[Bprocessor-commit] gl/src/net/sourceforge/bprocessor/gl/view View.java, 1.143, 1.144
Status: Pre-Alpha
Brought to you by:
henryml
From: Michael L. <he...@us...> - 2006-08-28 07:27:29
|
Update of /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11814/src/net/sourceforge/bprocessor/gl/view Modified Files: View.java Log Message: Made it possible to use surrounding edges when extruding in element-model Index: View.java =================================================================== RCS file: /cvsroot/bprocessor/gl/src/net/sourceforge/bprocessor/gl/view/View.java,v retrieving revision 1.143 retrieving revision 1.144 diff -C2 -d -r1.143 -r1.144 *** View.java 28 Aug 2006 05:53:53 -0000 1.143 --- View.java 28 Aug 2006 07:27:15 -0000 1.144 *************** *** 78,81 **** --- 78,85 ---- public static final int HANDLES = 3; + /** SUPPORT flag */ + public static final int SUPPORT = 4; + + /** IGNORE */ public static final boolean IGNORE = true; *************** *** 1784,1787 **** --- 1788,1794 ---- } + if (selectionMode == SUPPORT) { + selectionMode = OBJECTS; + } gl = gld.getGL(); |