-
Notifications
You must be signed in to change notification settings - Fork 10
Matrix3.ToString() 方法里 format 字符串错误 #17
Copy link
Copy link
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
s.Append(string.Format("|{0}{2} {0}{2} {1}|" + Environment.NewLine, this.M00, this.M01, this.M02, separator));
s.Append(string.Format("|{0}{2} {0}{2} {1}|" + Environment.NewLine, this.M10, this.M11, this.M12, separator));
s.Append(string.Format("|{0}{2} {0}{2} {1}|", this.M20, this.M21, this.M22, separator));
应该是:
s.Append(string.Format("|{0}{3} {1}{3} {2}|" + Environment.NewLine, this.M00, this.M01, this.M02, separator));
s.Append(string.Format("|{0}{3} {1}{3} {2}|" + Environment.NewLine, this.M10, this.M11, this.M12, separator));
s.Append(string.Format("|{0}{3} {1}{3} {2}|", this.M20, this.M21, this.M22, separator));
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working