Example #1
0
 /// <summary>
 /// Constructor for CAMLibrary
 /// </summary>
 public CAMLibrary()
 {
     performLineComb = true;
     camfile         = new CAMIO();
     resolutionLimt  = 0.5;
     messageDisplay  = new MessageDisplay();
 }
Example #2
0
 /// <summary>
 /// Constructor for CAMLibrary
 /// </summary>
 /// <param name="inpfile"></param>
 /// <param name="display"></param>
 public CAMLibrary(string inpfile, IDisplay display)
 {
     file    = inpfile;
     camfile = new CAMIO();
     InitilizeLib();
     performLineComb = true;
     resolutionLimt  = 0.5;
     messageDisplay  = display;
 }
Example #3
0
        /// <summary>
        /// Constructor for CAMLibrary
        /// </summary>
        /// <param name="inpfile"></param>
        public CAMLibrary(string inpfile)
        {
            //open and read the file

            file            = inpfile;
            camfile         = new CAMIO();
            performLineComb = true;
            InitilizeLib();
            resolutionLimt = 0.5;
        }
Example #4
0
 public CAMSpecData(string inpfile)
 {
     //open and read the file
     camfile = new CAMIO();
     file    = inpfile;
 }
Example #5
0
 public CAMSpecData()
 {
     camfile = new CAMIO();
 }
Example #6
0
 /// <summary>
 /// Constructor for CAMLibrary
 /// </summary>
 public CAMLibrary()
 {
     performLineComb = true;
     camfile         = new CAMIO();
     resolutionLimt  = 0.5;
 }