Search found 90 matches

by karunaMaitri
Mon 16. Apr 2012, 23:06
Forum: Programming Help
Topic: Unable to show coordinate system labels properly
Replies: 0
Views: 1382

Unable to show coordinate system labels properly

Hi, I have created a coordinate system using CoordinateSystemFactory. I would like to make the labels on the coordinate system visible and readable. For this factory object, I tried various values of label scale, font sizes and fonts, and I get the same result - the labels are unreadable. I also che...
by karunaMaitri
Fri 24. Feb 2012, 02:55
Forum: Bugs
Topic: CoordinateSystemFactory freezes
Replies: 1
Views: 828

Re: CoordinateSystemFactory freezes

I solved the problem. There are couple of places you can set values to axisScale: while creating CoordinateSystemFactory, and by using the setAxisScale() method. They were in conflict, in my program. When I corrected it (and I chose a very large value for axisScale), jReality set up the coordinate s...
by karunaMaitri
Thu 23. Feb 2012, 09:06
Forum: Bugs
Topic: CoordinateSystemFactory freezes
Replies: 1
Views: 828

CoordinateSystemFactory freezes

I have wide ranging data. For example, each coordinate can have values anywhere from 1.0 to 30,000.00. I created a SceneGraphComponent from this data, and then created an object of CoordinateSystemFactory, the object froze. I traced the problem to a method getBoxTicks() in CoordinateSystemFactory. I...
by karunaMaitri
Thu 23. Feb 2012, 08:35
Forum: Bugs
Topic: JRViewer does NOT display widely seperated data
Replies: 6
Views: 1336

Re: JRViewer does NOT display widely seperated data

Thank you very much, Charles! It worked!

Thanks again!
Karuna
by karunaMaitri
Tue 21. Feb 2012, 21:57
Forum: Bugs
Topic: JRViewer does NOT display widely seperated data
Replies: 6
Views: 1336

Re: JRViewer does NOT display widely seperated data

Thanks Charles! I tried your suggestion along with increasing the point size radius, and tried three different types of viewers. All of them do not display any points. I tested for various "far" distances and the result is the same. Here are the viewers I constructed based on your suggestion. public...
by karunaMaitri
Fri 17. Feb 2012, 22:52
Forum: Bugs
Topic: JRViewer does NOT display widely seperated data
Replies: 6
Views: 1336

Re: JRViewer does NOT display widely seperated data

Thank you, Charles! I looked through the code of jReality for Clipping Planes. It appears that the clipping planes (near and far) are st in only one class, DefaultPerspective. This class is used in PolygonPipeline, which in turn is used in AbstractViewer (of de.jreality.soft, not the one in jogl). A...
by karunaMaitri
Mon 13. Feb 2012, 00:20
Forum: Bugs
Topic: JRViewer does NOT display widely seperated data
Replies: 6
Views: 1336

JRViewer does NOT display widely seperated data

The following data is a set of 100 (of 209) points with widely ranging values. This data comes from a data mining program called Weka (data file: cpu.arff). The JRViewer does not display the data (only first three coordinates were considered for the display). But if this data is normalized by the co...
by karunaMaitri
Sun 12. Feb 2012, 20:51
Forum: Programming Help
Topic: Scaling up problem for displaying points
Replies: 4
Views: 1071

Re: Scaling up problem for displaying points

To address the question I raised in my previous post about bringing the bounding box into the viewing volume, I found some code in jReality that can do it. It is in the JRViewer and CameraUtility classes. I took some code from the tutorials and added it to my code. Unfortunately, it is not working -...
by karunaMaitri
Fri 10. Feb 2012, 11:48
Forum: Programming Help
Topic: Scaling up problem for displaying points
Replies: 4
Views: 1071

Re: Scaling up problem for displaying points

Thank you for the prompt reply. There seems to be two issues - I am sorry I did not make them clear. One of the constraints on "point cloud" display is to show the correct coordinates of the points. If we multiply by a factor, as you suggested, the points displayed will not be correct. You answered ...
by karunaMaitri
Thu 9. Feb 2012, 02:43
Forum: Programming Help
Topic: Scaling up problem for displaying points
Replies: 4
Views: 1071

Scaling up problem for displaying points

I am trying to display a (relatively) large (209) set of groups of points. I took some code from geom tutorials and then tried on a simple set of groups of points. double [][] vertices1 = new double[][] { {0, 0, 0}, {1, 0, 0}, {1, 1, 0}, {0, 1, 0}}; double [][] vertices2 = new double[][] { {0, 0, 0}...
by karunaMaitri
Wed 7. Dec 2011, 22:31
Forum: Installation
Topic: Problem downloading jReality
Replies: 1
Views: 875

Re: Problem downloading jReality

I am able to download successfully this morning.

Thanks!
Karuna
by karunaMaitri
Wed 7. Dec 2011, 07:29
Forum: Installation
Topic: Problem downloading jReality
Replies: 1
Views: 875

Problem downloading jReality

Hi, I am trying to download from subversion repository: http://fs.math.tu-berlin.de:8000/svn/jreality I keep getting the following error. Error validating location: "org.tigris.subversion.jahl.ClientException: RA layer request failed svn: Server sent unexpected return value (500 Internal Server Erro...
by karunaMaitri
Tue 31. May 2011, 00:56
Forum: Programming Help
Topic: How to add ViewerComponent to JPanel?
Replies: 1
Views: 528

Re: How to add ViewerComponent to JPanel?

I solved the problem by using startupLocal() method of JRViewer, which produces
JRootPane object.

Thanks!
Karuna
by karunaMaitri
Mon 30. May 2011, 10:18
Forum: Programming Help
Topic: How to add ViewerComponent to JPanel?
Replies: 1
Views: 528

How to add ViewerComponent to JPanel?

Hi, I need to add multiple "ViewingComponents", created from different Viewers, to a JFrame object. When I tried to do it using a JPanel to each ViewingComponent, and then adding it to another JPanel (mainPanel), and finally adding it to a JFrame gives me a blank window. You can reproduce the result...
by karunaMaitri
Thu 27. Jan 2011, 22:09
Forum: General jReality Discussion
Topic: Application of jReality
Replies: 2
Views: 2263

Application of jReality

Hi, I wanted to tell you about an exciting application I have been developing over jReality: a Visualization System that supports multiple pipelines. I use jReality in two ways. I use it for visualization of scenes. I also have simple a scene graph, which is grounded in jReality scene graphs. I put ...