Changeset 3713 in Sophya for trunk/SophyaPI/PIext/nomtarradapter.cc
- Timestamp:
- Dec 11, 2009, 9:57:10 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomtarradapter.cc
r3661 r3713 224 224 TVector<T>* v = new TVector<T>(arr, true); // on partage les donnees 225 225 dopt = "thinline," + dopt; 226 return( new PIYfXDrawer( new POTVectorAdapter<T>(v, true ), NULL, true) );226 return( new PIYfXDrawer( new POTVectorAdapter<T>(v, true, StringToCmplxDispOption(dopt)), NULL, true) ); 227 227 } 228 228 else { … … 234 234 /* --Methode-- */ 235 235 template <class T> 236 P2DArrayAdapter* NOMAdapter_TArray<T>::Get2DArray(string & )236 P2DArrayAdapter* NOMAdapter_TArray<T>::Get2DArray(string & dopt) 237 237 { 238 238 TArray<T> arr(*mArr, true); // on partage les donnees … … 241 241 // On peut en faire un tableau 2-D ... 242 242 TMatrix<T>* m = new TMatrix<T>(arr, true); // on partage les donnees 243 return ( new POTMatrixAdapter<T>(m, true ) );243 return ( new POTMatrixAdapter<T>(m, true, StringToCmplxDispOption(dopt)) ); 244 244 } 245 245 else {
Note:
See TracChangeset
for help on using the changeset viewer.