public void Deconstruct(out IntVector3 first, out IntVector3 second) { first = First; second = Second; }
public IntLineSegment3(IntVector3 first, IntVector3 second) { First = first; Second = second; }