re3-symbian/src/core/Range3D.h
2026-04-29 04:17:06 +05:00

11 lines
No EOL
197 B
C++

#pragma once
class CRange3D
{
CVector min, max;
public:
CRange3D(CVector _min, CVector _max);
bool IsInRange(CVector vec);
void DebugShowRange(float, int);
CVector GetRandomPointInRange();
};