Modify the print function print out format.
parent
362c93bb2b
commit
c80cfe068f
|
@ -54,8 +54,8 @@ bool Similarity3::operator==(const Similarity3& other) const {
|
||||||
void Similarity3::print(const std::string& s) const {
|
void Similarity3::print(const std::string& s) const {
|
||||||
std::cout << std::endl;
|
std::cout << std::endl;
|
||||||
std::cout << s;
|
std::cout << s;
|
||||||
rotation().print("R:\n");
|
rotation().print("\nR:\n");
|
||||||
std::cout << "t: " << translation().transpose() << "s: " << scale() << std::endl;
|
std::cout << "t: " << translation().transpose() << " s: " << scale() << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
Similarity3 Similarity3::identity() {
|
Similarity3 Similarity3::identity() {
|
||||||
|
|
Loading…
Reference in New Issue