コード例 #1
0
 public FrameTransformationVector DotProduct(FrameTransformationVector other)
 {
     return(new FrameTransformationVector(base.DotProduct(other), BaseFrame, other.ToFrame));
 }
コード例 #2
0
 public FrameTransformationVector Sum(FrameTransformationVector other)
 {
     return(new FrameTransformationVector(base.Sum(other), BaseFrame, other.ToFrame));
 }
コード例 #3
0
 public FrameTransformationVector(FrameTransformationVector values) : this(values, values.BaseFrame, values.ToFrame)
 {
 }