Search found 90 matches

by karunaMaitri
Wed 2. Sep 2009, 02:11
Forum: Programming Help
Topic: Different behaviors for the same program in different appli
Replies: 13
Views: 2246

Re: Different behaviors for the same program in different appli

Hi Steffen, I have stepped through the program in debugger. I did not get any more new information other than the one present in the stack trace (posted in my earlier message). As you suggested, I put the print command. Here is the result: ToolSystemConfiguration.class.getResource: jar:file:/...path...
by karunaMaitri
Tue 1. Sep 2009, 02:00
Forum: Programming Help
Topic: Different behaviors for the same program in different appli
Replies: 13
Views: 2246

Different behaviors for the same program in different appli

My java application program (program1) that draws a curve works fine when run as a Java project (project1) from IntelliJ IDEA. I have another Java project (project2) with program1 included. When I run program1 from project2 uisng IntelliJ IDEA, I get the following error. Both projects have identical...
by karunaMaitri
Tue 7. Jul 2009, 05:46
Forum: Programming Help
Topic: Coordinate System Visualization
Replies: 10
Views: 1827

Re: Coordinate System Visualization

Thanks Charles! I have used your suggestions in my code (attach below). The labels are nice and useful. I am not sure how to change the attributes of labels for the points, edges and faces. If you uncomment the code in labels method, it changes the colors of the faces as well. I have two specific qu...
by karunaMaitri
Fri 3. Jul 2009, 05:31
Forum: Programming Help
Topic: Coordinate System Visualization
Replies: 10
Views: 1827

Re: Coordinate System Visualization

Hi Charles, thanks for your reply and suggestions. They are very helpful. I have written code for displaying axes and bounding box, for surfaces and put it at the end of the message. It is very nice - the axes, labels, ticks and grid lines are all clear, including the surface. I am fascinated with j...
by karunaMaitri
Tue 30. Jun 2009, 09:49
Forum: Programming Help
Topic: Coordinate System Visualization
Replies: 10
Views: 1827

Re: Coordinate System Visualization

Thank you for your suggestions. Setting up different values for font and label scale did help to resolve some of the problems. Here are two different set ups and their corresponding results. I have also indicated the problems I encountered. I put the complete code at the end. 1. Setup Color blue = n...
by karunaMaitri
Mon 29. Jun 2009, 04:39
Forum: Programming Help
Topic: Coordinate System Visualization
Replies: 10
Views: 1827

Coordinate System Visualization

Hello, I am trying to make coordinate system visible by using CoordinateSystemFactory. I need to visualize all axes, labels, ticks, arrows and bounding box. I would like to have control over visualizations by setting fonts and colors for axes, box and labels. When I try to set them up I am not getti...
by karunaMaitri
Tue 20. Jan 2009, 03:00
Forum: Programming Help
Topic: Error when jReality source moved to non-root folder
Replies: 4
Views: 1117

Thanks for pointing that to me. I searched the web and found that some other people got the same error when they were using Nimbus look-and-feel. I have also been using it. After I commented it out I stopped getting the error, at least so far.

Thanks,
Karuna
by karunaMaitri
Sun 18. Jan 2009, 07:24
Forum: Programming Help
Topic: Error when jReality source moved to non-root folder
Replies: 4
Views: 1117

Thank you! I solved the problem in the following way. I put all the java files that extend the jReality classes in the folder (Renderer package) where the jReality source files used to reside. Then I added jReality jar files to the library of IDE. My program uses classes in Renderer package and thin...
by karunaMaitri
Mon 12. Jan 2009, 06:23
Forum: Programming Help
Topic: Error when jReality source moved to non-root folder
Replies: 4
Views: 1117

Error when jReality source moved to non-root folder

Hello, When jReality folder is not the root, I get error. I tested several simple programs with jReality source (when it is the root) and they work fine. Then I had to move the jReality source to a new folder and all the programs do not work. I use ViewerApp in all the cases. One typical use is: Vie...
by karunaMaitri
Sat 10. Jan 2009, 22:13
Forum: Programming Help
Topic: Surfaces from Generated Points
Replies: 6
Views: 1322

Thank you very much!

Regards,
Karuna
by karunaMaitri
Sun 21. Dec 2008, 02:21
Forum: Programming Help
Topic: Surfaces from Generated Points
Replies: 6
Views: 1322

Thanks Charles! I am sorry for the delayed reply as I have been busy trying to integrate jReality into my system. I have been trying to make notes and drawing UML diagrams from the tutorials and the source code. You are right! Tutorials are very helpful! The research work I am doing is on Visual Int...
by karunaMaitri
Sat 13. Dec 2008, 03:40
Forum: Programming Help
Topic: Surfaces from Generated Points
Replies: 6
Views: 1322

It worked!

Thank you, Charles! I looked at the QuadMeshExample and Ooloid (in examples) for using QuadMeshFactory. It solved my problem. Thank you very much for the very helpful suggestions. I also looked at the ViewerAppDemo. It is also helpful. Is there a detailed "functional" notes on jReality that can help...
by karunaMaitri
Tue 9. Dec 2008, 09:39
Forum: Programming Help
Topic: Surfaces from Generated Points
Replies: 6
Views: 1322

Surfaces from Generated Points

Hi, I have been trying to render surfaces from a set of data points generated from another program, instead of using equations. I was able to write an application - a jReality program that works by using ParametricSurfaceFactory. This is similar to one of the tutorial examples on the jReality web si...
by karunaMaitri
Fri 5. Dec 2008, 08:58
Forum: Programming Help
Topic: Embedding jReality in a Java Application
Replies: 6
Views: 1656

Thanks Steffen, for the help, it worked for JFrame and JInternalFrame. I have also extended the ViewerApp class by adding two constructors that take JFrame and JInternalFrame as arguments and then use the methods already present in ViewerApp. "...but interacting with the same scene from different vi...
by karunaMaitri
Tue 25. Nov 2008, 22:58
Forum: Programming Help
Topic: Embedding jReality in a Java Application
Replies: 6
Views: 1656

Embedding jReality in a Java Application

I am new to jReality. I would like to use it to visualize the data my java application produces. To make this embedding possible, I need to address three issues, which I describe below. In order to embed jReality into my application, I need to display jReality renderings in JInternalFrame. How can I...