您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

texturevector3d.h 427B

123456789101112131415
  1. #ifndef TEXTUREVECTOR3D_H
  2. #define TEXTUREVECTOR3D_H
  3. #include "colorvector3d.h"
  4. class TextureVector3D : public ColorVector3D
  5. {
  6. public:
  7. TextureVector3D(QColor color = Qt::white, double x = 0.0, double y = 0.0, double z = 0.0);
  8. TextureVector3D(QColor color = Qt::white, const Vector3D& other = Vector3D());
  9. TextureVector3D(const ColorVector3D& other);
  10. virtual ~TextureVector3D();
  11. };
  12. #endif // TEXTUREVECTOR3D_H