Skip to content

Commit 1257d4d

Browse files
author
kevyuu
committed
Add comment to implement a class template of CVertexHashGrid and CSmoothNormalGenerator that take position as template argument
1 parent cc39901 commit 1257d4d

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

include/nbl/asset/utils/CVertexHashGrid.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ concept HashGridIteratorFn = HashGridVertexData<T> && requires(Fn && fn, T const
2020
{ std::invoke(std::forward<Fn>(fn), cobj) } -> std::same_as<bool>;
2121
};
2222

23+
// TODO: implement a class template that take position type(either float32_t3 or float64_t3 as template argument
2324
template <HashGridVertexData VertexData>
2425
class CVertexHashGrid
2526
{

src/nbl/asset/utils/CSmoothNormalGenerator.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
namespace nbl::asset
1111
{
1212

13+
// TODO: implement a class template that take position type(either float32_t3 or float64_t3 as template argument
1314
class CSmoothNormalGenerator
1415
{
1516
public:

0 commit comments

Comments
 (0)