On May 10, 2006, at 8:59 a, [EMAIL PROTECTED] wrote:


I just checked out Jmol, and compiled successfully, but now the
applet is throwing this error:

Exception in thread "Thread-13" java.lang.NoClassDefFoundError: org/
jmol/vecmath/Point3fi


Point3fi is the latest addition of Miguel. The vecmath package is probably not included in the applet. Somewhere (maybe in build.xml but not sure), there is a list of packages that need to go in the applet.


this is what I found in build.xml:

  <target name="appletjars" id="appletjars" depends="check.appletjars"
          unless="appletjars.uptodate">
    <delete file="build/appletjars.timestamp"/>
    <delete dir="${appletjars.dir}"/>
    <mkdir dir="${appletjars.dir}"/>
<unjar dest="${appletjars.dir}" src="${lib.dir}/ vecmath1.2-1.14.jar">
      <patternset>
        <include name="**/Point3f.class"/>
        <include name="**/Vector3f.class"/>
        <include name="**/Matrix3f.class"/>
        <include name="**/Matrix4f.class"/>
        <include name="**/AxisAngle4f.class"/>
        <include name="**/Quat4f.class"/>
        <include name="**/Point3i.class"/>
        <!-- the following are dependencies of the classes above -->
        <include name="**/Tuple3i.class"/>
        <include name="**/Tuple3f.class"/>
        <include name="**/Tuple4f.class"/>
        <include name="**/Vector4f.class"/>
        <include name="**/Tuple3d.class"/>
        <include name="**/Tuple4d.class"/>
        <include name="**/Vector3d.class"/>
        <include name="**/Quat4d.class"/>
        <include name="**/Point4f.class"/>
        <include name="**/Point3d.class"/>
        <include name="**/Point4d.class"/>
        <include name="**/Tuple2d.class"/>
        <include name="**/Point2d.class"/>
        <include name="**/Matrix3d.class"/>
        <include name="**/SingularMatrixException.class"/>
      </patternset>
    </unjar>
    <touch file="build/appletjars.timestamp"/>
  </target>



but I don't know how to fix the problem (just adding Point3fi.class to the above probably seems stupid, but I tried it anyway and it still gave me the error). I gather this needs to wait for Miguel to address?

tim
--
Timothy Driscoll                                em: [EMAIL PROTECTED]
Virginia Bioinformatics Institute               ph: 540-231-3007
Bioinformatics I                                im: molvisions
Washington St., Blacksburg, VA 24061

"Pain heals. Chicks dig scars. Glory lasts forever."





-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Jmol-developers mailing list
Jmol-developers@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jmol-developers

Reply via email to