#include <math.h>
#include <stdlib.h>
#include <ostream>
#include <type_traits>
#include <optional>
#include <math/vector2d.h>
#include <geometry/eda_angle.h>
Go to the source code of this file.
|
std::ostream & | operator<< (std::ostream &aStream, const SEG &aSeg) |
|
◆ OPT_VECTOR2I
Definition at line 39 of file seg.h.
◆ operator<<()
std::ostream & operator<< |
( |
std::ostream & |
aStream, |
|
|
const SEG & |
aSeg |
|
) |
| |
|
inline |
Definition at line 386 of file seg.h.
387{
388 aStream <<
"[ " << aSeg.
A <<
" - " << aSeg.
B <<
" ]";
389
390 return aStream;
391}