feat: Add interp3 in Function3D.

This commit is contained in:
sunwen
2025-06-27 11:37:53 +08:00
parent 9dd7d97237
commit e36ca5c82f
2 changed files with 95 additions and 0 deletions

13
src/Function3D.cuh Normal file
View File

@@ -0,0 +1,13 @@
#ifndef __FUNCTION3D_CUDA__
#define __FUNCTION3D_CUDA__
#include "CudaMatrix.h"
#include "AuroraDefs.h"
namespace Aurora
{
CudaMatrix interp3(float aStartX, float aDx, float aEndX, float aStartY, float aDy, float aEndY,
float aStartZ, float aDz, float aEndZ, const CudaMatrix& aValue,
const CudaMatrix& aNewX, const CudaMatrix& aNewY, const CudaMatrix& aNewZ, float aOutValue);
}
#endif // __FUNCTION3D_CUDA_H__