(o Intersection)
| 103 | } |
| 104 | |
| 105 | func (z Intersection) Equals(o Intersection) bool { |
| 106 | return z.Point.Equals(o.Point) && Equal(z.T[0], o.T[0]) && Equal(z.T[1], o.T[1]) && angleEqual(z.Dir[0], o.Dir[0]) && angleEqual(z.Dir[1], o.Dir[1]) && z.Tangent == o.Tangent && z.Same == o.Same |
| 107 | } |
| 108 | |
| 109 | func (z Intersection) String() string { |
| 110 | var extra string |
no test coverage detected