X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=Math%2Fpoint3d.hxx;h=ba43a8c0799d23ef5f7ab03cf513d641c291bc69;hb=2091bf21447bceb2a769f1da7f2368ed56486bbf;hp=a3c9eea31ffb5687dc538686fe62dc6202e311e9;hpb=bb70329c25b8ccf3785462b0177375d8d0f6664c;p=simgear.git diff --git a/Math/point3d.hxx b/Math/point3d.hxx index a3c9eea3..ba43a8c0 100644 --- a/Math/point3d.hxx +++ b/Math/point3d.hxx @@ -133,7 +133,7 @@ operator >> ( istream& in, Point3D& p) inline ostream& operator<< ( ostream& out, const Point3D& p ) { - return out << p.n[PX] << ',' << p.n[PY] << ',' << p.n[PZ]; + return out << p.n[PX] << ", " << p.n[PY] << ", " << p.n[PZ]; } /////////////////////////// @@ -293,6 +293,9 @@ Point3D::distance3D(const Point3D& a ) const // $Log$ +// Revision 1.4 1998/11/11 00:18:38 curt +// Check for domain error in fgGeoctoGeod() +// // Revision 1.3 1998/10/20 18:21:49 curt // Tweaks from Bernie Bright. //