Search found 222 matches

by Andre
Fri 1. Jun 2012, 08:40
Forum: Programming Help
Topic: What are the slots should I use?
Replies: 5
Views: 1376

Re: What are the slots should I use?

I'll have a deeper look at this next week.

best
Andre
by Andre
Thu 31. May 2012, 09:04
Forum: Programming Help
Topic: Unable to use jReality with SCILAB
Replies: 13
Views: 2721

Re: Unable to use jReality with SCILAB

Hi karuna, sorry for the late response. I don't have time yet, but hopefully I'll find some next week to rebuild your problem. Unfortunatly I don't have a windows computer, but It seems, that there is a linuxversion of scilab aswell, so I'll first try to to rebuild your problem with linux. best Andre
by Andre
Wed 30. May 2012, 16:05
Forum: Programming Help
Topic: What are the slots should I use?
Replies: 5
Views: 1376

Re: What are the slots should I use?

Unfortunately, there is no Inputslot for ALT+Mouseclick, but you can already use SHIFT instead. Your tool have to inherit from AbstactTool. I guess my old Class would help you: import de.jreality.scene.SceneGraphComponent; import de.jreality.scene.tool.AbstractTool; import de.jreality.scene.tool.Inp...
by Andre
Wed 30. May 2012, 16:01
Forum: Installation
Topic: Errors installing with ant build
Replies: 2
Views: 1441

Re: Errors installing with ant build

thx 4 reporting should be fixed now.

I've changed some of the example-viewers to the up-to-date JRViewer. The ant-file first tried to compile the examples and afterwards the JRViewer. This couldn't work ;)

best Andre
by Andre
Mon 9. Apr 2012, 17:27
Forum: Programming Help
Topic: Performance,Rendering
Replies: 4
Views: 1273

Re: Performance,Rendering

As far as I know it is not possible to render just some particular parts of the geometry. The renderer traverses the scenegraph and renders everything in it. What computer do you have? In general jreality should be able to handle big geometries. The geometry you've just displayed shouldn't be any pr...
by Andre
Fri 6. Apr 2012, 11:27
Forum: Programming Help
Topic: Performance,Rendering
Replies: 4
Views: 1273

Re: Performance,Rendering

Hi nebuduk,

welcome to jReality. Do I understand you right, that you just want to see the faces without lines/vertices?

If yes I can refer you to the user tutorials:

http://www3.math.tu-berlin.de/jreality/ ... r_Tutorial
by Andre
Mon 26. Mar 2012, 12:59
Forum: Bugs
Topic: Offscreen Rendering exits suddenly
Replies: 16
Views: 4310

Re: Offscreen Rendering exits suddenly

We have already a running hard coded jogl2-branch. It should be possible for you to check out this branch from the jreality svn-server. Just check out "branches" -> "jogamp" instead of "trunk" Then you'll be able to check your code with a jogl2 version. But be aware, how I wrote this branch is hardc...
by Andre
Sun 25. Mar 2012, 10:48
Forum: Bugs
Topic: Offscreen Rendering exits suddenly
Replies: 16
Views: 4310

Re: Offscreen Rendering exits suddenly

Hi neo, do you get the same errors by using a different compiler like sun-java? I'm just using sun-java, because Open-JDK in combination with Eclipse and jreality often causes errors. HowTo install sun-java6-jdk: http://www.gaggl.com/2011/10/installing-java6-jdk-on-ubuntu-11-10/ HowTo switch the com...
by Andre
Mon 5. Mar 2012, 15:52
Forum: General jReality Discussion
Topic: JRViewer issues
Replies: 23
Views: 5914

Re: JRViewer issues

I'm sorry, I don't know such a tool.

Maybe it is possible with halfedge/halfedgetools from jtem:
http://www3.math.tu-berlin.de/jtem/projects.html

If you don't find a tool there you have to write it for your own.
by Andre
Mon 5. Mar 2012, 13:05
Forum: General jReality Discussion
Topic: JRViewer issues
Replies: 23
Views: 5914

Re: JRViewer issues

Shaguar wrote:Ok, i tried a lot but it is still not working.
Maybe its because all surfaces of the subscenegraphs of al.obj are closed?
How can i figure this out?
It depends on, how the models are generated. In general they are closed...
by Andre
Fri 2. Mar 2012, 18:53
Forum: General jReality Discussion
Topic: JRViewer issues
Replies: 23
Views: 5914

Re: JRViewer issues

First of all, yes it is possible to give different textures to different scenegraphs. I've checked once again your AI.obj and he is divided to a bunch of subscenegraphs. I'm not really good with textures but I can tell you some hints I've experienced with textures in jReality. First it is just possi...
by Andre
Wed 29. Feb 2012, 17:56
Forum: General jReality Discussion
Topic: JRViewer issues
Replies: 23
Views: 5914

Re: JRViewer issues

hmm, normally this should be enough. My graphics card is a nVidia GeForce 570 Series, about 5 years old. Have you tried updating your drivers to their newest version? Are all your examples lacking or just the big AY.obj one? EDIT: Inter Q45: http://ark.intel.com/de/products/chipsets/36522 Nvidia 570...
by Andre
Wed 29. Feb 2012, 17:25
Forum: General jReality Discussion
Topic: JRViewer issues
Replies: 23
Views: 5914

Re: JRViewer issues

What kind of computer are you using? I'm using a seven years old AMD dual core 2GHz and 4GB DDR2-RAM. Everything works fine for me, So if you have a newer computer you shouldn't have any problem. The big usage of memory depends on the geometry factorys. I don't know why, but there was a reason in th...
by Andre
Tue 28. Feb 2012, 19:40
Forum: General jReality Discussion
Topic: JRViewer issues
Replies: 23
Views: 5914

Re: JRViewer issues

Hah! just found it, it is as simple as it should be:

Code: Select all

app.setAttribute(EDGE_DRAW, false);
app.setAttribute(VERTEX_DRAW, false);
by Andre
Tue 28. Feb 2012, 19:36
Forum: General jReality Discussion
Topic: JRViewer issues
Replies: 23
Views: 5914

Re: JRViewer issues

With this tutorial you should be able to generate a customized Background: http://www3.math.tu-berlin.de/jreality/mediawiki/index.php/Set_simple_Background For the other question I'm not sure how to disable lines/vertices from the beginning. one solution could be to disable the Contentappearanceplug...