Example #1
0
 public FrameTransformationMatrix DotProduct(FrameTransformationMatrix other)
 {
     FrameTransitionCheck(other);
     return(new FrameTransformationMatrix(base.DotProduct(other), BaseFrame, other.ToFrame));
 }
Example #2
0
 public FrameTransformationMatrix Sum(FrameTransformationMatrix other)
 {
     FrameTransitionCheck(other);
     return(new FrameTransformationMatrix(base.Sum(other), BaseFrame, other.ToFrame));
 }
Example #3
0
 public FrameTransformationMatrix(FrameTransformationMatrix values) : this(values, values.BaseFrame, values.ToFrame)
 {
 }