feat: Add interp3 in Function3D.
This commit is contained in:
13
src/Function3D.cuh
Normal file
13
src/Function3D.cuh
Normal 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__
|
||||
Reference in New Issue
Block a user