Port: Include changes of FreeBSD port

This commit is contained in:
wmayer
2024-09-13 14:23:13 +02:00
committed by Chris Hennes
parent 6c5e90a6d2
commit 86806cb353
4 changed files with 26 additions and 16 deletions

View File

@@ -174,7 +174,7 @@ void Geom2dPoint::Save(Base::Writer &writer) const
<< "<Geom2dPoint "
<< "X=\"" << Point.x << "\" "
<< "Y=\"" << Point.y << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dPoint::Restore(Base::XMLReader &reader)
@@ -848,7 +848,7 @@ void Geom2dCircle::Save(Base::Writer& writer) const
SaveAxis(writer, axis);
writer.Stream()
<< "Radius=\"" << c.Radius() << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dCircle::Restore(Base::XMLReader& reader)
@@ -1007,7 +1007,7 @@ void Geom2dArcOfCircle::Save(Base::Writer &writer) const
SaveAxis(writer, axis, u, v);
writer.Stream()
<< "Radius=\"" << c.Radius() << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dArcOfCircle::Restore(Base::XMLReader &reader)
@@ -1167,7 +1167,7 @@ void Geom2dEllipse::Save(Base::Writer& writer) const
writer.Stream()
<< "MajorRadius=\"" << e.MajorRadius() << "\" "
<< "MinorRadius=\"" << e.MinorRadius() << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dEllipse::Restore(Base::XMLReader& reader)
@@ -1342,7 +1342,7 @@ void Geom2dArcOfEllipse::Save(Base::Writer &writer) const
writer.Stream()
<< "MajorRadius=\"" << e.MajorRadius() << "\" "
<< "MinorRadius=\"" << e.MinorRadius() << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dArcOfEllipse::Restore(Base::XMLReader &reader)
@@ -1469,7 +1469,7 @@ void Geom2dHyperbola::Save(Base::Writer& writer) const
writer.Stream()
<< "MajorRadius=\"" << h.MajorRadius() << "\" "
<< "MinorRadius=\"" << h.MinorRadius() << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dHyperbola::Restore(Base::XMLReader& reader)
@@ -1600,7 +1600,7 @@ void Geom2dArcOfHyperbola::Save(Base::Writer &writer) const
writer.Stream()
<< "MajorRadius=\"" << h.MajorRadius() << "\" "
<< "MinorRadius=\"" << h.MinorRadius() << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dArcOfHyperbola::Restore(Base::XMLReader &reader)
@@ -1709,7 +1709,7 @@ void Geom2dParabola::Save(Base::Writer& writer) const
SaveAxis(writer, axis);
writer.Stream()
<< "Focal=\"" << focal << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dParabola::Restore(Base::XMLReader& reader)
@@ -1820,7 +1820,7 @@ void Geom2dArcOfParabola::Save(Base::Writer &writer) const
SaveAxis(writer, axis, u, v);
writer.Stream()
<< "Focal=\"" << focal << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dArcOfParabola::Restore(Base::XMLReader &reader)
@@ -1933,7 +1933,7 @@ void Geom2dLine::Save(Base::Writer &writer) const
<< "PosY=\"" << Pos.y << "\" "
<< "DirX=\"" << Dir.x << "\" "
<< "DirY=\"" << Dir.y << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dLine::Restore(Base::XMLReader &reader)
@@ -2065,7 +2065,7 @@ void Geom2dLineSegment::Save(Base::Writer &writer) const
<< "StartY=\"" << Start.y << "\" "
<< "EndX=\"" << End.x << "\" "
<< "EndY=\"" << End.y << "\" "
<< "/>" << endl;
<< "/>" << std::endl;
}
void Geom2dLineSegment::Restore(Base::XMLReader &reader)