101 } |
101 } |
102 |
102 |
103 // ============================================================================= |
103 // ============================================================================= |
104 // ----------------------------------------------------------------------------- |
104 // ----------------------------------------------------------------------------- |
105 double& vertex::operator[] (const Axis ax) |
105 double& vertex::operator[] (const Axis ax) |
106 { return coord ( (ushort) ax); |
106 { return coord ( (int) ax); |
107 } |
107 } |
108 |
108 |
109 const double& vertex::operator[] (const Axis ax) const |
109 const double& vertex::operator[] (const Axis ax) const |
110 { return coord ( (ushort) ax); |
110 { return coord ( (int) ax); |
111 } |
111 } |
112 |
112 |
113 double& vertex::operator[] (const int ax) |
113 double& vertex::operator[] (const int ax) |
114 { return coord (ax); |
114 { return coord (ax); |
115 } |
115 } |