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