# | Line 227 | Line 227 | namespace oopse { | |
---|---|---|
227 | resize(size_); | |
228 | } | |
229 | ||
230 | < | double* DataStorage::getArrayPointer(int whichArray) { |
230 | > | RealType* DataStorage::getArrayPointer(int whichArray) { |
231 | ||
232 | switch (whichArray) { | |
233 | case dslPosition: | |
# | Line 269 | Line 269 | namespace oopse { | |
269 | } | |
270 | } | |
271 | ||
272 | < | double* DataStorage::internalGetArrayPointer(std::vector<Vector3d>& v) { |
272 | > | RealType* DataStorage::internalGetArrayPointer(std::vector<Vector3d>& v) { |
273 | if (v.size() == 0) { | |
274 | return NULL; | |
275 | } else { | |
# | Line 277 | Line 277 | namespace oopse { | |
277 | } | |
278 | } | |
279 | ||
280 | < | double* DataStorage::internalGetArrayPointer(std::vector<RotMat3x3d>& v) { |
280 | > | RealType* DataStorage::internalGetArrayPointer(std::vector<RotMat3x3d>& v) { |
281 | if (v.size() == 0) { | |
282 | return NULL; | |
283 | } else { | |
# | Line 286 | Line 286 | namespace oopse { | |
286 | ||
287 | } | |
288 | ||
289 | < | double* DataStorage::internalGetArrayPointer(std::vector<double>& v) { |
289 | > | RealType* DataStorage::internalGetArrayPointer(std::vector<RealType>& v) { |
290 | if (v.size() == 0) { | |
291 | return NULL; | |
292 | } else { |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |