コード例 #1
0
        public HomogeneousTransformation DotProduct(HomogeneousTransformation other)
        {
            FrameTransformationMatrix newVals = base.DotProduct(other);

            return(new HomogeneousTransformation(newVals, BaseFrame, other.ToFrame));
        }
コード例 #2
0
 public TranslationVector(FrameTransformationMatrix values) : this(values.Values, values.BaseFrame, values.ToFrame)
 {
 }
コード例 #3
0
 public RotationMatrix(FrameTransformationMatrix values) : this(values.Values, values.BaseFrame, values.ToFrame)
 {
 }