Example #1
0
 private void defineExhibitionPlane()
 {
     calibrator = new Calibrator(10, this.vp, this.round); // Initiate calibrator
     this.calibrationSampleBreak = 3000;
     List<Point3D> corners = this.calibrator.definePlane(sampleVectors(3, 3, 10, 2), 3, 10, 2); // Calibration-points
     this.exhibitionSetExhibitionPlane = new GeometryHandler.Plane(corners);
 }
Example #2
0
 public void setExhibitionPlane(GeometryHandler.Plane plane)
 {
     this.plane = plane;
 }
Example #3
0
 public Exhibition(List<Point3D> plane, List<ExhibitionExhibit> exhibits)
 {
     this.plane = new GeometryHandler.Plane(plane);
     this.exhibits = exhibits;
 }
Example #4
0
 public Exhibition(GeometryHandler.Plane plane, List<ExhibitionExhibit> exhibits)
 {
     this.plane = plane;
     this.exhibits = exhibits;
 }
Example #5
0
 /// <summary>
 /// CONSTRUCTORS
 /// </summary>
 public Exhibition()
 {
     this.plane = new GeometryHandler.Plane();
     this.exhibits = new List<ExhibitionExhibit>();
 }