Search found 48 matches

by benjamin.kutschan
Wed 1. Jun 2011, 11:02
Forum: Programming Help
Topic: bug in ifs2heds?[SOLVED]
Replies: 4
Views: 1039

Re: bug in ifs2heds?

The actual problem starts in line 165, where the edge belonging to face i is not assigned the color of face i but the color of edge i. current code: if (coords[1] != null) eAdapters.set(Position.class, e, coords[1][i]); maybe right code: if (coords[1] != null) eAdapters.set(Position.class, e, coords...
by benjamin.kutschan
Thu 26. May 2011, 12:24
Forum: Programming Help
Topic: bug in ifs2heds?[SOLVED]
Replies: 4
Views: 1039

bug in ifs2heds?[SOLVED]

The code below is from ConverterJR2Heds, line 149, (rev? 1152). i iterates over the faces. but suddenly it's used as an index over the edges. It appears, that here every edge adjacent to the i-th face(indices[2 for face] ) is given the color of some i-th edge(colors[1 for edge] ). The i-th edge coul...
by benjamin.kutschan
Mon 16. May 2011, 16:44
Forum: Installation
Topic: missing gluegen-rt.jar for instal without svn in eclipSOLVED
Replies: 3
Views: 1588

missing gluegen-rt.jar for instal without svn in eclipSOLVED

I have set up jreality with eclipse using the distribution files, because my internet provider supports neither ssh nor ftp nor svn. I used the java source code found here: http://www3.math.tu-berlin.de/jreality/download/latest In Eclipse i have used Create a Java Project>from existing source, speci...