public FrameTransformationVector DotProduct(FrameTransformationVector other)
 {
     return(new FrameTransformationVector(base.DotProduct(other), BaseFrame, other.ToFrame));
 }
 public FrameTransformationVector Sum(FrameTransformationVector other)
 {
     return(new FrameTransformationVector(base.Sum(other), BaseFrame, other.ToFrame));
 }
 public FrameTransformationVector(FrameTransformationVector values) : this(values, values.BaseFrame, values.ToFrame)
 {
 }