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