public override bool Equals(IPipeMemberType other) { if (GetType() != other.GetType()) { return(false); } return(Equals((Arc)other)); }
public bool Equals(IPipeMemberType other) { if (GetType() != other.GetType()) { return(false); } return(Equals((Plane)other)); }
public override bool Equals(IPipeMemberType other) { if (!GetType().IsAssignableFrom(other.GetType())) { return(false); } return(Equals((PolyCurve)other)); }
public bool Equals(IPipeMemberType other) { if (!GetType().IsAssignableFrom(other.GetType())) { return(false); } return(Equals((Vec)other)); }
public bool Equals(IPipeMemberType other) { if (other.GetType() != GetType()) { return(false); } return(Equals((PipeString)other)); }
public bool Equals(IPipeMemberType other) { if (GetType() != other.GetType()) { return false; } return Equals((Mesh)other); }