⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 spherical_harmonic.cpp

📁 普林斯顿开发的快速球面调和变换算法
💻 CPP
字号:
// Spherical_Harmonic.cpp : Defines the entry point for the DLL application.
//

#include "stdafx.h"
#include "math.h"
#include "Spherical.h"
#include "stdlib.h"


extern "C" __declspec(dllexport)  double** accountfeature(double **rsample, int a, int b)
{

	
	Spherical *spher=new Spherical(a,b);

	spher->Read(rsample);

	spher->CountA();

	return spher->feature;		
}


BOOL APIENTRY DllMain( HANDLE hModule, 
                       DWORD  ul_reason_for_call, 
                       LPVOID lpReserved
					 )
{
    return TRUE;
} 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -