slot 0.0.1
A real time UI render framework
载入中...
搜索中...
未找到
SphereMesh.h
浏览该文件的文档.
1//
2// Created by zhou_zhengming on 2026/5/19.
3//
4
5#pragma once
6#include "Mesh.h"
7
8namespace z8 {
9class SphereMesh : public Mesh{
10public:
11 SphereMesh(float radius = 10, unsigned numSubdivisions = 6);
12 void Subdivide();
13};
14}
15
16
17
Definition Mesh.h:18
Definition SphereMesh.h:9
void Subdivide()
Definition SphereMesh.cpp:55
SphereMesh(float radius=10, unsigned numSubdivisions=6)
Definition SphereMesh.cpp:17
Definition Application.h:14