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