Class Point¶
class Point<T> demo¶
template <typename T>
struct Point { … }
A 3D point structure.
This templated struct represents a point in 3D space with coordinates x, y, and z.
| T | The type of the coordinates (e.g., int, float, double). |
variable x ¶
T x
Fully qualified name: ns::Point<T>::x
Declared at library.hpp:169
variable y ¶
T x, y
Fully qualified name: ns::Point<T>::y
Declared at library.hpp:169
variable z ¶
Fully qualified name: ns::Point<T>::z
Declared at library.hpp:169
Fully qualified name: ns::Point<T>
Declared at library.hpp:167
This file was generated by cxxdox, a C++ documentation generator based on MkDocs Material and libclang.