Re: more dumb noob pain ("2dplot.clj")

2009-12-13 Thread Michael Wood
2009/12/13 rebcabin : > I got a lot closer thanks to the great hints above; the current state > is this > > C:\usr\local\bin>java -cp clojure-1.0.0.jar;clojure-contrib.jar;j3d- > core-1.3.1.j > ar;j3dcore-ogl.dll;vecmath.jar;j3dutils.jar;j3dcore-d3d.dll > clojure.lang.Repl By the way, clojure.lang

Re: more dumb noob pain ("2dplot.clj")

2009-12-12 Thread ataggart
If it's a java project, then you can just select the jars, right- click, choose Build Path > Add to Build Path. You can also do it through Project > Properties >Java Build Path. On Dec 12, 6:32 pm, rebcabin wrote: > I got a lot closer thanks to the great hints above; the current state > is this

Re: more dumb noob pain ("2dplot.clj")

2009-12-12 Thread rebcabin
I got a lot closer thanks to the great hints above; the current state is this C:\usr\local\bin>java -cp clojure-1.0.0.jar;clojure-contrib.jar;j3d- core-1.3.1.j ar;j3dcore-ogl.dll;vecmath.jar;j3dutils.jar;j3dcore-d3d.dll clojure.lang.Repl Clojure 1.0.0- user=> (load-file "/Users/Reb/workspace/2dplo

Re: more dumb noob pain ("2dplot.clj")

2009-12-12 Thread Michael Wood
2009/12/12 rebcabin : > Well, the 3d test applications from https://j3d-webstart.dev.java.net/test/ Java Webstart works differently to something run from the command line. When you click on the link it downloads a .jnlp file that, I believe, mentions all the dependencies. > work correctly and ev

Re: more dumb noob pain ("2dplot.clj")

2009-12-12 Thread rebcabin
Well, the 3d test applications from https://j3d-webstart.dev.java.net/test/ work correctly and every other Java test I've tried works, but I am not sure how to find out what's on the CLASSPATH. Is CLASSPATH an environment variable? If so, I don't have any binding for it, but then the immediate ques

Re: more dumb noob pain ("2dplot.clj")

2009-12-12 Thread devender
You need this jar file j3d-core-1.3.1.jar in your classpath If you are using leiningen then add this to your project.clj [java3d/ j3d-core "1.3.1"] if not then you can download that jar from here http://repo2.maven.org/maven2/java3d/j3d-core/1.3.1/ -Devender On Dec 11, 9:15 am, rebcabin wrote:

Re: more dumb noob pain ("2dplot.clj")

2009-12-11 Thread Erik Price
On Fri, Dec 11, 2009 at 12:15 PM, rebcabin wrote: > > Any hints for me? I'm sure it's because I really don't know at all how > to find out where java things are installed and how to refer to them > if they're installed in weird places yadda yadda. > Are the Java 3D jar files in your CLASSPATH?

more dumb noob pain ("2dplot.clj")

2009-12-11 Thread rebcabin
I've been having pretty good luck writing my own programs and running lots of samples from the contribute-files section of this google group, but hit a roadblock this morning: trying to run "2dplot," I installed java3d and it passes the tests on https://j3d-webstart.dev.java.net/test/ but when I