Dawn/src/dawn/display/mesh/SphereMesh.hpp
2023-03-22 18:54:22 -07:00

20 lines
399 B
C++

// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "display/mesh/Mesh.hpp"
#include "util/mathutils.hpp"
namespace Dawn {
class SphereMesh {
public:
static void createSphere(
Mesh *mesh,
float_t radius,
int32_t slices,
int32_t stacks
);
};
}