mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 05:20:00 +02:00
28 lines
582 B
C++
28 lines
582 B
C++
//
|
|
// AACubeTests.h
|
|
// tests/shared/src
|
|
//
|
|
// Created by Andrew Meadows on 2016.02.19
|
|
// Copyright 2016 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_AACubeTests_h
|
|
#define hifi_AACubeTests_h
|
|
|
|
#include <QtTest/QtTest>
|
|
#include <glm/glm.hpp>
|
|
|
|
#include <AACube.h>
|
|
|
|
class AACubeTests : public QObject {
|
|
Q_OBJECT
|
|
private slots:
|
|
void ctorsAndSetters();
|
|
void containsPoint();
|
|
void touchesSphere();
|
|
};
|
|
|
|
#endif // hifi_AACubeTests_h
|