Skip to content
Snippets Groups Projects
Commit 4931f7dc authored by GAUDIN Gregory's avatar GAUDIN Gregory
Browse files

Fixed header errors after docstring generation

parent 2523c48b
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,6 @@ namespace QOSM::Tools{
ZY
};
/**
* @class Grid
* @brief Represents a 2D grid of points in a specified plane.
......@@ -37,11 +36,7 @@ namespace QOSM::Tools{
* @param n A scaling factor.
* @param plane The plane type in which the grid is defined.
*/
void createPoints(const std::array<double,2>& uRange,
const std::array<double,2>& vRange,
const std::array<int,2>& numPoints,
const double& n,
const PlaneType& plane);
void createPoints(const std::array<double,2> &uRange, const std::array<double,2> &vRange, const std::array<int,2> &numPoints, const double &n, const PlaneType &plane);
public:
std::array<unsigned int, 2> shape{0, 0}; ///< Grid dimensions (rows, cols).
......@@ -123,6 +118,5 @@ namespace QOSM::Tools{
*/
void operator-=(const Vec3 &offset);
};
}
#endif
\ No newline at end of file
This diff is collapsed.
......@@ -44,6 +44,8 @@ setup(
name="qosm_core",
cmdclass={"build_ext": build_ext},
ext_modules=ext_modules,
zip_safe=False,
python_requires=">=3.11",
)
# USAGE:
......
......@@ -39,6 +39,8 @@ setup(
name="qosm_core",
cmdclass={"build_ext": build_ext},
ext_modules=ext_modules,
zip_safe=False,
python_requires=">=3.11",
)
# USAGE:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment