/** * Copy constructor. * * @param tuple Tuple. */ public BuffTuple4d(Tuple tuple) { if (tuple is Tuple4d) { Tuple4d _tuple = (Tuple4d)tuple; this.x = _tuple.GetX(); this.y = _tuple.GetY(); this.z = _tuple.GetZ(); this.w = _tuple.GetW(); } else if (tuple is BuffTuple4d) { BuffTuple4d _tuple = (BuffTuple4d)tuple; this.x = _tuple.GetX(); this.y = _tuple.GetY(); this.z = _tuple.GetZ(); this.w = _tuple.GetW(); } else { Tuple4d _tuple = new Tuple4d(tuple); this.x = _tuple.GetX(); this.y = _tuple.GetY(); this.z = _tuple.GetZ(); this.w = _tuple.GetW(); } }
/** * Copy constructor. * * @param tuple Tuple. */ public BuffTuple4d(BuffTuple4d tuple) { this.x = tuple.GetX(); this.y = tuple.GetY(); this.z = tuple.GetZ(); this.w = tuple.GetW(); }
public bool EpsilonEquals(BuffTuple4d other, double epsilon = EPSILON) { if (other == this) { return(true); } return(EpsilonEquals(other.GetX(), other.GetY(), other.GetZ(), other.GetW(), epsilon)); }
public bool Equals(BuffTuple4d other) { if (other == this) { return(true); } return(Equals(other.GetX(), other.GetY(), other.GetZ(), other.GetW())); }
public BuffTuple4d Clone() { BuffTuple4d copy = (BuffTuple4d)base.Clone(); return(copy); }