Re: [JAVA3D] Delaunay Triangulation

2000-07-10 Thread Jacob Nikom
Look at the URL: http://www.mathworks.com/products/demos/matlab/triang/tri2.html Also, search the whole mathworks site. Jacob Nikom Desiree Hilbring wrote: > > Hi, > I have a given set of Points with x,y,z coordinates and want to > triangulate a terrain object consisting of triang

Re: [JAVA3D] help

2000-07-06 Thread Jacob Nikom
Java3D uses heavyweight components and Swing uses lightweight ones. You can mix them but be careful. Look at URL: http://java.sun.com/products/jfc/tsc/articles/mixing/index.html Jacob Nikom > Javier Bazzocco wrote: > > Hi, my name is Javier, i'm from Argentina and i'm

Re: [JAVA3D] Simple setup question

2000-06-20 Thread Jacob Nikom
Hi Karen, Where did you download JDK1.3 from? I could not find it on http://developer.java.sun.com/developer sites. Thank you, Jacob Nikom Karen Lu wrote: > > I had similar problem before. What you need to do is to put > several jar files in c:\jdk1.3\jre\lib\exe\ to your classpa

Re: [JAVA3D] Simple setup question

2000-06-13 Thread Jacob Nikom
Hi, Speaking about file locations - I found some of my Java3D stuff in C:\Program Files\JavaSoft\JRE directories/subdirectories. I also have them in C:\jdk13. Why do we need two independent locations? Regards, Jacob Nikom Curtis Rueden wrote: > > Check your C:\Windows and C:\Windows\

Re: [JAVA3D] GraphicsConfiguration...

2000-04-25 Thread Jacob Nikom
Look at http://pub.cs.tu-berlin.de/doc/java/jdk/api/java.awt.GraphicsConfiguration.html Jacob Augustin Gjini wrote: > > I see in lots of Java 3D program this piece of code > > GraphicsConfiguration config = > SimpleUniverse.getPreferredConfiguration(); > c3D = new Canvas3D(config

Re: [JAVA3D] Java3d and Linux Installation problems

2000-04-05 Thread Jacob Nikom
distributions it always important to have another right way of doing things. Regards, Jacob Nikom Desiree Hilbring wrote: > > Finally I got the HelloUniverse Program to work :) > with your Mesa File > > Thank you to all of you for your help, sofar I am really glad that I did > se

Re: [JAVA3D] Java3d and Linux

2000-04-04 Thread Jacob Nikom
Also for people who are interested in Java and Linux there is an excellent reference book: "Java Programming on Linux" by Nathan Meyers http://www.javalinux.net/ Jacob Desiree Hilbring wrote: > > Hi everybody, > > I worked with Java3D 1.1.1 under Windows NT until now. > But now I am forced to

Re: [JAVA3D] Java3d and Linux

2000-04-04 Thread Jacob Nikom
o your LD_LIBRARY_PATH path setenv LD_LIBRARY_PATH .:/local/lib:/usr/lib:/usr/lib/X11:/usr/local/lib or incrementally setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/usr/local/lib 17) Got to the directory //homes/nikom/work/Java/jdk1.2/demo/java3d/ and run the software from those subdirectories Good luck,

Re: [JAVA3D] Sorry redundant questions...3d cards

2000-03-29 Thread Jacob Nikom
You have to send this message to Java-Linux listserver: http://www.blackdown.org/java-linux/mailinglist.html Jacob Nikom Gareth Boden wrote: > > > Hi guys. I've seen a bunch of postings on the same > > topic, but I wanted to know what personal experiences > > people

Re: [JAVA3D] Lose the radians

2000-03-27 Thread Jacob Nikom
ter than degrees and mathematicians liked them more. French mathematicians tried to changed definition of degrees to make it more decimal (after French Revolution), but those attemps did not live long. Jacob Nikom "Casteel, Don" wrote: > > I don't know if I can agree wi

Re: [JAVA3D] Urgent - Please Help!!

2000-03-24 Thread Jacob Nikom
turn tx; } //.... Jacob Nikom PK wrote: > > Hi all, > I've been trying for ages now to texture a jpeg image onto an object > file (.obj) that I have loaded in to a 3D scene, but I still haven't > managed to do it. At the end of this text is the code I have for

Re: [JAVA3D] [java3d] make Texture from Image

2000-03-16 Thread Jacob Nikom
Look at http://java.sun.com/products/java-media/3D/collateral/ Here is the code. I used JAI for downloading .png images Jacob Nikom //=beginning of the file SphereTextureApp = import javax.media.jai.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; import

Re: [JAVA3D] Satellite Animation

2000-03-16 Thread Jacob Nikom
Look at http://recanati.ensmp.fr:81/jdk/guide/nativemethod/jniTOC.doc.html http://java.sun.com/docs/books/tutorial/native1.1/index.html Jacob Nikom Olivier Antibi wrote: > > Hello everybody, > > I'm new in this mailing list. I have to develop a satellite animatio

Re: [JAVA3D] Java 3D Popularity

2000-03-03 Thread Jacob Nikom
Look at http://java.sun.com/products/java-media/3D/collateral/presentation/ Jacob Nikom Michael Kelly wrote: > > Hello everyone - where can I find industry information that tells me how > popular Java 3D is and what kind of future exists for it? And what types of > applicatio

Re: [JAVA3D] Canvas3D & Swing issues

2000-03-03 Thread Jacob Nikom
Look at http://java.sun.com/products/jfc/tsc/articles/mixing/index.html Jacob Nikom Akber Datoo wrote: > > Hi! > > I encounter problems when using the canvas3D in JFrames. I have been told > that this is because of the heavyweight/lightweight conflict i.e. the > Canvas3

Re: [JAVA3D] Newbie question

2000-03-01 Thread Jacob Nikom
/mixing/index.html Jacob Nikom > Thomas E Björge wrote: > > Hello! > > I am about to learn java3D in order to implement it. Now, my question > is can I integrate java3D in a swing interface? Or do I have to use > the AWT? > > What I have to create is an application with a

Re: [JAVA3D] Java 3D Utility Documentation

2000-02-26 Thread Jacob Nikom
I don't think there is such a location. In order to get documentation you have to download j3d_v_1_1_3 from Sun or Blackdown web sites, install it and over there you will find the documentation. I don't know about the source code. Jacob Nikom Asish Law wrote: > > Can somebody

[JAVA3D] Where to find API for java3d.utils?

2000-02-05 Thread Jacob Nikom
, Jacob Nikom === To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff JAVA3D-INTEREST". For general help, send email to [EMAIL PROTECTED] and include in the body of the message "help".

Re: [JAVA3D] Any way to get a Canvas3d inside a JInternalFrame?

2000-02-03 Thread Jacob Nikom
Look at http://java.sun.com/products/jfc/tsc/articles/mixing/index.html The problem is that Swing's JInternalFrame is a lightweight component, but Canvas3d is a heavyweight one. Mixing them is a bit tricky. Good luck, Jacob Nikom Rob Rodgers wrote: > > Hello, listmembers. > >

Re: [JAVA3D] Stereo and Swing

2000-01-26 Thread Jacob Nikom
Be careful mixing lightweight and heavyweight components. Jacob Nikom Mojtaba Hosseini wrote: > > Hello,:) > > Does anyone know of any problems between Swing and being able to have > stereoscopic view?Thanks in advance. >

Re: [JAVA3D] IDE

2000-01-26 Thread Jacob Nikom
You can try IBM Visual Age and Borland(Inprise) IDEs On Linux all of them are free. You can get more info on http://www.javalinux.net/ Jacob Nikom Tim Bray wrote: > > At 04:23 PM 1/25/00 -, Andrew Phelps wrote: > >Can anyone recommend a good IDE which allows good debugging o

Re: [JAVA3D] Mixing heavy and light components in Java3D

2000-01-24 Thread Jacob Nikom
If I have problem I would appreciate your help very much. Regards, Jacob Nikom Jimmy Talbot wrote: > > Hi, > > > with BarMenu component. When I click on corresponding JMenuBar root > > menu item (on MenuBar widget), it highlights, but I cannot see the > > drop-down part

Re: [JAVA3D] Where I can download Java JDK 1.2 for Linux?

2000-01-22 Thread Jacob Nikom
http://www.blackdown.org/java-linux.html This the original place for JDK1.2 and 1.2.2 Jacob Nikom Tony Burrows wrote: > > On 18 Jan 00, at 9:50, Edison Valencia wrote: > > > Hi. > > > > Where I can download Java JDK 1.2 for Linux? > > > > Thanks. > &

Re: [JAVA3D] Java technologies list

2000-01-21 Thread Jacob Nikom
I don't think that someone at SUN is listening simply because it is WRONG listserver. Probably, the better place is Java Developer Connection Forum. The URL is: http://forum.java.sun.com/ Jacob Nikom "Dickinson, John" wrote: > > That url might list the technologies but leav

Re: [JAVA3D] Mixing heavy and light components in Java3D

2000-01-20 Thread Jacob Nikom
owever, in practice it is quite different. Do you have any ideas what to do? Do you think it might be relevant to specific JDK like Blackdown, Inprise, IBM, etc.? Regards, Jacob Nikom Jacob Nikom wrote: > > Hi Jimmy, > > Thank you for your advice. I was encoureged by your explana

Re: [JAVA3D] Mixing Java 3D canvases and Swing

2000-01-20 Thread Jacob Nikom
Panel(); contentPanel.add(displayImagePanel); frame.add(canvas3D); frame.add(contentPanel); frame.setVisible(true); frame.validate(); } } Regards, Jacob Nikom Jimmy Talbot wrote: > > Hi, > > > I am trying to work with Java3D and Swing on Linux. I was able

Re: [JAVA3D] Java technologies list

2000-01-19 Thread Jacob Nikom
now) with instructions for their installation. To get an idea about the book just look at the URL: http://www.javalinux.net/ Jacob Nikom "Dickinson, John" wrote: > > I know this isn't the intent of this forum but probably someone here could > point me in the right direction.

Re: [JAVA3D] Java technologies list

2000-01-19 Thread Jacob Nikom
Have you tried the URL: http://java.sun.com/products/products.a-z.html recently? Jacob Nikom "Dickinson, John" wrote: > > I know this isn't the intent of this forum but probably someone here could > point me in the right direction. > > I am familiar with only

[JAVA3D] Mixing Java 3D canvases and Swing

2000-01-18 Thread Jacob Nikom
reateImage(); Frame frame = new MainFrame(helloUniverse, 400, 400); frame.add(displayImagePanel); frame.setVisible(true); frame.validate(); . Thank you, Jacob Nikom === To unsubsc