mirror of
https://github.com/lubosz/overte.git
synced 2025-04-25 14:33:06 +02:00
29 lines
657 B
C++
29 lines
657 B
C++
//
|
|
// Sphere3DOverlay.h
|
|
// interface/src/ui/overlays
|
|
//
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_Sphere3DOverlay_h
|
|
#define hifi_Sphere3DOverlay_h
|
|
|
|
#include "Volume3DOverlay.h"
|
|
|
|
class Sphere3DOverlay : public Volume3DOverlay {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Sphere3DOverlay();
|
|
Sphere3DOverlay(const Sphere3DOverlay* Sphere3DOverlay);
|
|
~Sphere3DOverlay();
|
|
virtual void render(RenderArgs* args);
|
|
|
|
virtual Sphere3DOverlay* createClone() const;
|
|
};
|
|
|
|
|
|
#endif // hifi_Sphere3DOverlay_h
|