| Home >> All >> rcs >> [ posemath Javadoc ] |
Source code: rcs/posemath/PM_CARTESIAN.java
1 /* 2 * New Java File starts here. 3 * This file should be named PM_CARTESIAN.java 4 */ 5 6 7 // Set Package Name 8 package rcs.posemath; 9 10 // Import all NML, CMS, and RCS classes and interfaces 11 import rcs.*; 12 import rcs.nml.*; 13 import rcs.utils.*; 14 15 /* 16 * Class definition for PM_CARTESIAN 17 * Automatically generated by RCS Java Diagnostics Tool. 18 * on Wed Jan 07 10:53:44 EST 1998 19 */ 20 public class PM_CARTESIAN extends PmCartesian implements Cloneable 21 { 22 public void update(NMLFormatConverter nml_fc) 23 { 24 super.update(nml_fc); 25 } 26 27 public PM_CARTESIAN() 28 { 29 super(); 30 } 31 32 public PM_CARTESIAN(double startx, double starty, double startz) 33 { 34 super(startx, starty, startz); 35 } 36 37 public PM_CARTESIAN(PM_CYLINDRICAL c) throws PmException 38 { 39 Posemath.pmCylCartConvert(c,this); 40 } 41 42 public Object clone() 43 { 44 try 45 { 46 return super.clone(); 47 } 48 catch(Exception e) 49 { 50 e.printStackTrace(); 51 } 52 return null; 53 } 54 55 } 56