| 241 | } |
| 242 | |
| 243 | Vector3* TriVector::CopyVector( |
| 244 | Vector3* in ) const |
| 245 | { |
| 246 | // would this work? |
| 247 | //return &(*in = *this); |
| 248 | |
| 249 | *in = *this; |
| 250 | return in; |
| 251 | } |
| 252 | |
| 253 | |
| 254 | Vector3* TriVector::Vector() |
no outgoing calls
no test coverage detected