mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 15:09:24 +02:00
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
//
|
|
// Grid3DOverlay.h
|
|
// interface/src/ui/overlays
|
|
//
|
|
// Created by Ryan Huffman on 11/06/14.
|
|
// 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_Grid3DOverlay_h
|
|
#define hifi_Grid3DOverlay_h
|
|
|
|
#include "Planar3DOverlay.h"
|
|
|
|
class Grid3DOverlay : public Planar3DOverlay {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static QString const TYPE;
|
|
virtual QString getType() const { return TYPE; }
|
|
|
|
Grid3DOverlay();
|
|
Grid3DOverlay(const Grid3DOverlay* grid3DOverlay);
|
|
|
|
virtual void render(RenderArgs* args);
|
|
virtual const render::ShapeKey getShapeKey() override;
|
|
virtual void setProperties(const QScriptValue& properties);
|
|
virtual QScriptValue getProperty(const QString& property);
|
|
|
|
virtual Grid3DOverlay* createClone() const;
|
|
|
|
private:
|
|
void updateGrid();
|
|
|
|
bool _followCamera { true };
|
|
|
|
int _majorGridEvery { 5 };
|
|
float _majorGridRowDivisions;
|
|
float _majorGridColDivisions;
|
|
|
|
float _minorGridEvery { 1.0f };
|
|
float _minorGridRowDivisions;
|
|
float _minorGridColDivisions;
|
|
};
|
|
|
|
#endif // hifi_Grid3DOverlay_h
|