mirror of
https://github.com/overte-org/overte.git
synced 2025-08-07 14:10:40 +02:00
21 lines
No EOL
542 B
C++
21 lines
No EOL
542 B
C++
//
|
|
// MeshInfoTests.h
|
|
// tests/physics/src
|
|
//
|
|
// Created by Virendra Singh on 2015.03.02
|
|
// 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_MeshInfoTests_h
|
|
#define hifi_MeshInfoTests_h
|
|
namespace MeshInfoTests{
|
|
void testWithTetrahedron();
|
|
void testWithUnitCube();
|
|
void testWithCube();
|
|
void runAllTests();
|
|
void testWithTetrahedronAsMesh();
|
|
}
|
|
#endif // hifi_MeshInfoTests_h
|