Ejemplo n.º 1
0
 public Vector3DE(Vector3DE other)
 {
     pos.x = other.pos.x;
     pos.y = other.pos.y;
     pos.z = other.pos.z;
     e     = other.e;
 }
Ejemplo n.º 2
0
 public Extruder()
 {
     ishomed            = Trilean.Unknown;
     inRelativeMode     = Trilean.Unknown;
     position           = new Vector3DE(0.0f, 0.0f, 0.0f, 0.0f);
     Z_Valid            = true;
     Temperature        = -273f;
     Fan                = 0;
     iNozzleSizeMicrons = 0;
 }
Ejemplo n.º 3
0
 public Extruder(Extruder rhs)
 {
     ishomed            = rhs.ishomed;
     inRelativeMode     = rhs.inRelativeMode;
     position           = rhs.position;
     Z_Valid            = rhs.Z_Valid;
     Temperature        = rhs.Temperature;
     iNozzleSizeMicrons = rhs.iNozzleSizeMicrons;
     Fan = rhs.Fan;
 }