Changeset 1099 in Sophya for trunk/SophyaLib/TArray/tmatrix.h
- Timestamp:
- Jul 26, 2000, 6:29:46 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/tmatrix.h
r1081 r1099 31 31 inline TMatrix<T>& operator = (const TMatrix<T>& a) 32 32 { 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); } 33 36 34 37 virtual TArray<T>& SetBA(const BaseArray& a); 38 //! Operator = between matrices with different types 35 39 inline TMatrix<T>& operator = (const BaseArray& a) 36 40 { SetBA(a); return(*this); }
Note:
See TracChangeset
for help on using the changeset viewer.