
Definition at line 3 of file LineImpl.java.
Public Member Functions | |
| Point | getA () |
| Point | getB () |
| LineImpl (Point a, Point b) | |
| LineImpl (double ax, double ay, double bx, double by) | |
Private Attributes | |
| Point | a |
| Point | b |
| de::psi::telco::sumoplayer::util::LineImpl::LineImpl | ( | double | ax, | |
| double | ay, | |||
| double | bx, | |||
| double | by | |||
| ) | [inline] |
| Point de::psi::telco::sumoplayer::util::LineImpl::getA | ( | ) | [inline, virtual] |
Returns the starting Point of this Line
Implements de::psi::telco::sumoplayer::util::Line.
Definition at line 19 of file LineImpl.java.
References a.
00019 { 00020 return a; 00021 }
| Point de::psi::telco::sumoplayer::util::LineImpl::getB | ( | ) | [inline, virtual] |
Returns the ending Point of this Line
Implements de::psi::telco::sumoplayer::util::Line.
Definition at line 25 of file LineImpl.java.
References b.
00025 { 00026 return b; 00027 }
1.5.6