You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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