Added TexMat(Matrix) constructor.

This commit is contained in:
Robert Osfield 2006-08-29 06:58:22 +00:00
parent f74d3af391
commit 22e94c9aaf

View File

@ -27,6 +27,8 @@ class OSG_EXPORT TexMat : public StateAttribute
TexMat();
TexMat(const Matrix& matrix):_matrix(matrix) {}
/** Copy constructor using CopyOp to manage deep vs shallow copy. */
TexMat(const TexMat& texmat,const CopyOp& copyop=CopyOp::SHALLOW_COPY):
StateAttribute(texmat,copyop),