Changeset 1099 in Sophya for trunk/SophyaLib/TArray/tmatrix.h


Ignore:
Timestamp:
Jul 26, 2000, 6:29:46 PM (25 years ago)
Author:
ansari
Message:

Protection integrite TMatrix,TVector - operateur = (BaseArray & pour TVector et operations entre matrices avec <> MemMapping (Pas termine) Reza 27/6/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/TArray/tmatrix.h

    r1081 r1099  
    3131  inline  TMatrix<T>& operator = (const TMatrix<T>& a)
    3232                     { Set(a);  return(*this); }
     33  //! Operator = between a matrix and an array
     34  inline  TMatrix<T>& operator = (const TArray<T>& a)
     35                     { Set(a);  return(*this); }
    3336
    3437  virtual TArray<T>& SetBA(const BaseArray& a);
     38  //! Operator = between matrices with different types
    3539  inline  TMatrix<T>& operator = (const BaseArray& a)
    3640                     { SetBA(a);  return(*this); }
Note: See TracChangeset for help on using the changeset viewer.